forked from gregnb/mui-datatables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
32 lines (29 loc) · 922 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
32
{
"compilerOptions": {
"esModuleInterop": true,
"skipLibCheck": true,
"target": "ES2022",
"verbatimModuleSyntax": true,
/* Bundler mode */
"composite": true,
"jsx": "react-jsx",
"isolatedModules": true,
"moduleResolution": "bundler",
"module": "ESNext",
"moduleDetection": "force",
"noEmit": true,
/* Linting */
"declarationMap": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
// "noUncheckedSideEffectImports": true, // DISABLED DUE ERROR: Unknown compiler option noUncheckedSideEffectImports .
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"paths": {
"@src/*": ["./src/*"]
}
},
"exclude": ["node_modules", "dist"]
}