forked from angular/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
34 lines (34 loc) · 833 Bytes
/
tsconfig.json
File metadata and controls
34 lines (34 loc) · 833 Bytes
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
{
"compilerOptions": {
"baseUrl": ".",
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "commonjs",
"moduleResolution": "node",
"outDir": "../dist/all/",
"paths": {
"selenium-webdriver": ["angular2/typings/selenium-webdriver/selenium-webdriver.d.ts"],
"rxjs/*": ["../node_modules/rxjs/*"],
"@angular/*": ["./@angular/*"],
"@angular/*/testing": ["./@angular/*/testing"]
},
"rootDir": ".",
"inlineSourceMap": true,
"sourceMap": false,
"sourceRoot": ".",
"target": "es5"
},
"exclude": [
"angular1_router",
"angular2",
"benchmarks",
"benchmarks_external",
"benchpress",
"payload_tests",
"playground",
"rollup-test",
"upgrade-ts2dart.d.ts",
"zone-ts2dart.d.ts"
]
}