forked from TrilonIO/aspnetcore-angular-universal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
38 lines (38 loc) · 920 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
34
35
36
37
38
{
"compilerOptions": {
"moduleResolution": "node",
"target": "es5",
"sourceMap": true,
"rootDir": ".",
"baseUrl": ".",
"outDir": "wwwroot/dist",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipDefaultLibCheck": true,
"lib": [ "es6", "dom" ],
"types": [
"hammerjs",
"jasmine",
"node",
"source-map",
"selenium-webdriver",
"uglify-js",
"webpack"
],
"paths": {
"app" : ["./Client/app" ],
"app-shared": [ "./Client/shared" ],
"app-containers": [ "./Client/containers" ],
"app-components": [ "./Client/components" ]
}
},
"exclude": [ "bin", "wwwroot", "node_modules" ],
"compileOnSave": false,
"awesomeTypescriptLoaderOptions": {
"forkChecker": true,
"useWebpackText": true,
"useCache": true
},
"buildOnSave": false,
"atom": { "rewriteTsconfig": false }
}