-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
30 lines (30 loc) · 905 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
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./src",
"importHelpers": true,
"module": "esnext",
"outDir": "./dist/out-tsc",
"types": ["node"],
"paths": {
"@app/*": ["app/*"],
"@env/*": ["environments/*"],
"@core/*": ["app/core/*"],
"@shared/*": ["app/shared/*"],
"@feature/*": ["app/feature/*"],
"stream": ["../node_modules/stream-browserify/index.js"],
"zlib": ["../node_modules/browserify-zlib/lib/index.js"]
},
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"downlevelIteration": true,
"target": "es2015",
"typeRoots": ["node_modules/@types"],
"lib": ["es2017", "esnext.asynciterable", "dom"],
"skipLibCheck": true
},
"exclude": ["src/test.ts", "**/*.spec.ts", "src/git.version.ts"]
}