-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
29 lines (29 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
{
"compilerOptions": {
"moduleResolution": "node",
"module": "commonjs",
"declaration": false,
"removeComments": true,
"allowSyntheticDefaultImports": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es6",
"sourceMap": true,
// "outDir": "./dist",
"baseUrl": "./src",
"paths": {
"@environment": ["./environments/environment"],
"@services": ["./app/services/index"],
"@snippets": ["./app/snippets/index"],
"@layouts": ["./app/layout/index"],
"@page": ["./app/pages/index"],
"@component": ["./app/components/index"],
"@classes": ["./app/classes/index"]
}
},
"exclude": [
"node_modules",
"webpack",
// "**/*.spec.ts"
]
}