-
Notifications
You must be signed in to change notification settings - Fork 4
/
tsconfig.json
33 lines (30 loc) · 876 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
{
"compilerOptions": {
"lib": ["ESNext"],
"module": "CommonJS",
"moduleResolution": "node",
"target": "ESNext",
"outDir": "./lib",
"rootDir": "./src",
"sourceMap": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"resolveJsonModule": true,
"importHelpers": true,
"inlineSourceMap": false,
"forceConsistentCasingInFileNames": true,
"declaration": true,
// "declarationDir": "./lib/typings",
"typeRoots": [ "./node_modules/@types"]
},
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node",
},
"include": ["src/**/*"],
"exclude": ["node_modules","**/__test__/*"]
}