-
-
Notifications
You must be signed in to change notification settings - Fork 555
Expand file tree
/
Copy pathtsconfig.json
More file actions
46 lines (42 loc) · 1.23 KB
/
Copy pathtsconfig.json
File metadata and controls
46 lines (42 loc) · 1.23 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"compilerOptions": {
// copy of https://github.com/tsconfig/bases/blob/main/bases/strictest.json
"strict": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
// FIXME: "exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
// FIXME: "noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
// FIXME: "noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"isolatedModules": true,
"checkJs": true,
// FIXME: "esModuleInterop": true,
"skipLibCheck": true,
// end copy
"resolveJsonModule": true,
"allowImportingTsExtensions": true,
"rewriteRelativeImportExtensions": true,
"module": "nodenext",
"moduleResolution": "nodenext",
"target": "es2021",
"allowSyntheticDefaultImports": true,
"noEmit": true,
"lib": ["es2022", "dom", "dom.iterable"],
"jsx": "react-jsx"
},
"compileOnSave": false,
"exclude": ["node_modules", ".tmp", "dist", "demo-dist"],
"include": [
"./src/**/*.ts",
"./src/**/*.tsx",
"./manual-types.d.ts",
"tests/**/*.ts",
"scripts/**/*.ts",
"playwright.config.ts",
"webpack.config.ts"
]
}