-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
31 lines (31 loc) · 961 Bytes
/
tsconfig.json
File metadata and controls
31 lines (31 loc) · 961 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
{
"compilerOptions": {
"allowJs": false,
"declaration": true,
"downlevelIteration": true,
"forceConsistentCasingInFileNames": true,
"locale": "en",
"lib": ["ES2015", "ES2020.Promise"],
"module": "CommonJS",
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
// Relying on lint to handle to allow _ prefix for unused functions exception
"noUnusedLocals": false,
"noUnusedParameters": true,
"outDir": "dist",
// Skipping lib check since some libraries (lodash) don't compile properly
"skipLibCheck": true,
"strict": true,
"sourceMap": true,
"target": "es5",
"useDefineForClassFields": true,
"noErrorTruncation": true,
/* Experimental Options */
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true
},
"compileOnSave": true,
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "dist", "test/**/*.test.ts"]
}