-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (27 loc) · 816 Bytes
/
tsconfig.json
File metadata and controls
28 lines (27 loc) · 816 Bytes
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
{
"compilerOptions": {
"target": "es2020",
"module": "commonjs",
"moduleResolution": "node",
"noImplicitAny": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"strictFunctionTypes": true,
"incremental": true,
"sourceMap": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"outDir": "build",
"baseUrl": "./src",
"lib": ["dom", "es6", "es2016.array.include", "es2017", "es2019"],
"skipLibCheck": true,
"types": ["node", "jest"]
},
"exclude": ["node_modules", "jest.config.ts"],
"compileOnSave": false,
"buildOnSave": false
}