-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathtsconfig.json
executable file
·31 lines (31 loc) · 944 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"compilerOptions": {
"jsx": "react",
"target": "es5",
"module": "es2020",
"moduleResolution": "node",
"preserveConstEnums": true,
"removeComments": true,
"sourceMap": true,
"baseUrl": "./",
"paths": {
"@mui/*": ["node_modules/@mui/*/"]
},
"strict": true, // Enable strict type-checking options
"skipLibCheck": false, // Skip type checking of declaration files
"noImplicitAny": true,
"allowSyntheticDefaultImports": true,
"downlevelIteration": true,
"allowJs": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"lib": [
"ES2021.String",
"dom",
"dom.iterable"
]
},
"skipLibCheck": true,
"include": ["resources/js/**/*"],
"exclude": ["node_modules", "**/node_modules/*"]
}