forked from wolftender/pantofel-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
31 lines (30 loc) · 812 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
{
"ts-node": {
"transpileOnly": false,
"files": true,
"compilerOptions": { }
},
"compilerOptions": {
"target": "es2015",
"module": "commonjs",
"lib": [ "es2021", "dom" ],
"rootDir": "./src",
"outDir": "./build",
"moduleResolution": "node",
"strict": true,
"declaration": false,
"sourceMap": true,
"inlineSources": true,
"types": [ "node" ],
"stripInternal": true,
"incremental": true,
"skipLibCheck": true,
"importsNotUsedAsValues": "error",
"inlineSourceMap": false,
"noEmit": false,
"resolveJsonModule": true,
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
}
}