-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
29 lines (29 loc) · 988 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
{
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"outDir": "dist",
"strict": false, // Unfortunately strict mode has problems with decorators accessing the this context within getters/setters
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"moduleResolution": "node",
"forceConsistentCasingInFileNames": true,
"downlevelIteration": true,
"noImplicitReturns": true,
"strictNullChecks": true,
"noImplicitOverride": true,
"lib": ["es2017", "dom"],
"typeRoots": ["./node_modules/@types"],
"baseUrl": ".",
"paths": {
"@js-soft/ts-serval": ["./src"]
}
},
"include": ["src/**/*.ts"],
"exclude": ["lib-node", "lib-esm", "lib-test"]
}