-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (33 loc) · 883 Bytes
/
tsconfig.json
File metadata and controls
33 lines (33 loc) · 883 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
29
30
31
32
33
{
"compilerOptions": {
"module": "commonjs",
"lib": ["DOM", "ES2019"],
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"target": "es6",
"noImplicitAny": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"strictNullChecks": true,
"sourceMap": true,
"outDir": "dist",
"baseUrl": "src",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"strictPropertyInitialization": false,
"noUnusedLocals": true,
"noUnusedParameters": true,
"incremental": true,
"declaration": true,
"paths": {
"@models/*": ["models/*"],
"@utils/*": ["utils/*"],
"@lib/*": ["lib/*"],
"@types/*": ["@types/*"]
}
},
"include": ["src/**/*"],
"exclude": ["src/**/*.test.**", "src/__tests__/**/*"]
}