-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
42 lines (42 loc) · 1.32 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
41
42
{
"compilerOptions": {
"baseUrl": "src/", // enables relative imports to root
"outDir": "dist/", // target for compiled files
"allowSyntheticDefaultImports": true, // no errors on commonjs default import
"checkJs": false, // typecheck js files
"skipLibCheck": true,
"declaration": true, // emit declaration files so
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true, // importing helper functions from tslib
"noEmitHelpers": true, // disable emitting inline helper functions
"listFiles": false,
"listEmittedFiles": false,
"lib": [
"dom",
"es2016",
"es2017.object"
],
"noUnusedLocals": false,
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"noEmit": false,
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noImplicitReturns": false,
"noImplicitThis": false,
"strictNullChecks": true,
"pretty": true,
"removeComments": true,
"sourceMap": true
},
"include": [
"src/index.ts"
],
"exclude": [
"node_modules"
]
}