-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
35 lines (35 loc) · 946 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
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"noImplicitAny": false,
"outDir": "dist",
"rootDir": ".",
"sourceMap": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"moduleResolution": "node"
},
"exclude": [
"node_modules"
],
"filesGlob": [
"./src/*.ts",
"./src/**/*.ts",
"!./node_modules/**/*.ts",
"./typings/browser.d.ts"
],
"files": [
"./src/app.ts",
"./src/vendor.ts",
"./src/app/components/about/about.ts",
"./src/app/components/ng2-location/browser-location-service.ts",
"./src/app/components/ng2-location/browser-location.ts",
"./src/app/components/ng2-location/location-interface.ts",
"./src/app/seed-app.ts",
"./typings/browser.d.ts"
],
"atom": {
"rewriteTsconfig": true
}
}