-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
30 lines (30 loc) · 1.62 KB
/
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
{
"compilerOptions": {
"baseUrl":".",
"paths": {
"@angular/common":["trainingapp/jspm_packages/npm/@angular/[email protected]"],
"@angular/compiler":["trainingapp/jspm_packages/npm/@angular/[email protected]"],
"@angular/core":["trainingapp/jspm_packages/npm/@angular/[email protected]"],
"@angular/http":["trainingapp/jspm_packages/npm/@angular/[email protected]"],
"@angular/platform-browser-dynamic":["trainingapp/jspm_packages/npm/@angular/[email protected]"],
"@angular/platform-browser-dynamic/*":["trainingapp/jspm_packages/npm/@angular/[email protected]/*"],
"@angular/platform-browser":["trainingapp/jspm_packages/npm/@angular/[email protected]"],
"@angular/router-deprecated":["trainingapp/jspm_packages/npm/@angular/[email protected]"],
"@angular/router":["trainingapp/jspm_packages/npm/@angular/[email protected]"],
"@angular/upgrade":["trainingapp/jspm_packages/npm/@angular/[email protected]"],
"rxjs/*":["trainingapp/jspm_packages/npm/[email protected]/*"]
// "google-code-prettify/*":["trainingapp/jspm_packages/npm/[email protected]/*"]
},
"target": "es5",
"moduleResolution": "node",
"module": "system",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"preserveConstEnums": true,
"noImplicitAny": true,
"sourceMap": true
},
"exclude": [
"node_modules", "trainingapp/jspm_packages", "typings"
]
}