-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.base.json
43 lines (43 loc) · 972 Bytes
/
tsconfig.base.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
{
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"composite": true,
"declaration": true,
"declarationMap": true,
"downlevelIteration": true,
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"resolveJsonModule": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"removeComments": false,
"strictNullChecks": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"lib": [
"es5",
"es6",
"esnext",
"dom",
"dom.iterable",
"scripthost"
],
"paths": {
"@rinaca/*": ["packages/*/lib/esm", "packages/*/src"]
},
"types": [
"mocha",
"chai"
]
}
}