-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
44 lines (44 loc) · 1019 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
33
34
35
36
37
38
39
40
41
42
43
44
// https://www.typescriptlang.org/tsconfig
{
"compilerOptions": {
// -- Project Options
"declaration": true,
"declarationMap": false,
"incremental": false,
"lib": [
"ES2020" // Node 14.x
],
"module": "CommonJS",
"outDir": "build",
"plugins": [
{
"name": "typescript-eslint-language-service"
}
],
"rootDir": ".",
"sourceMap": true,
"target": "ES2019", // Node 12.x
// -- Strict Checks
"strict": true,
// -- Module Resolution
"esModuleInterop": true,
// -- Linter Checks
"noImplicitReturns": true,
// "noUnusedLocals": true,
"noUnusedParameters": true,
// -- Experimental
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
// -- Advanced
"allowUnreachableCode": false,
"forceConsistentCasingInFileNames": true,
"newLine": "lf",
"resolveJsonModule": true,
"skipLibCheck": true,
"stripInternal": true
},
"include": [
"src/**/*",
"test/**/*"
]
}