-
-
Notifications
You must be signed in to change notification settings - Fork 517
/
tsconfig.json
50 lines (46 loc) · 1.24 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"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
"module": "es2015",
"moduleResolution": "node",
"target": "es2021",
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"noEmit": true,
"pretty": true,
"lib": ["es2022", "dom", "dom.iterable"],
"jsx": "react-jsx"
},
"compileOnSave": false,
"exclude": ["node_modules", ".tmp", "dist", "demo-dist", "worker-dist"],
"include": [
"./src/**/*.ts",
"./src/**/*.tsx",
"./manual-types.d.ts",
"tests/**/*.ts",
"scripts/**/*.ts",
"playwright.config.ts",
"webpack.config.ts"
],
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
}
}