-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
40 lines (36 loc) · 1.02 KB
/
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
{
"compilerOptions": {
// module
"module": "ESNext",
"moduleResolution": "node",
"esModuleInterop": true,
"resolveJsonModule": true,
// type-checking
"strict": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"noUnusedParameters": true,
"noUnusedLocals": true,
"noImplicitAny": true,
"noImplicitThis": true,
"skipLibCheck": true,
// emit
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"newLine": "lf",
"removeComments": false,
"importHelpers": true,
// output
"outDir": "./dist",
"rootDir": "./lib",
// environment & language
"target": "ESNext",
"lib": ["ESNext"],
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"include": ["./lib/**/*.ts"],
"exclude": ["./node_modules", "./dist"]
}