-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
32 lines (32 loc) · 1012 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": {
"target": "es2021",
"module": "commonjs",
"lib": ["es2021", "dom"],
"outDir": "./dist",
"sourceMap": true,
"allowJs": true,
"removeComments": true,
"moduleResolution": "node",
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strict": true,
"typeRoots": ["./types", "./node_modules/@types"],
"noUnusedLocals": false,
"noImplicitReturns": true,
"preserveConstEnums": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"ignoreDeprecations": "5.0",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"strictPropertyInitialization": false, // to enable generic constructors, e.g. on CircuitValue
"skipLibCheck": true
},
"include": ["*.ts", "src/**/*.ts", "depreciated/stepsum.ts"],
"exclude": ["node_modules", ".build"]
}