-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
32 lines (32 loc) · 925 Bytes
/
Copy pathtsconfig.json
File metadata and controls
32 lines (32 loc) · 925 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
{
"version": "1.6.2",
"command": "tsc",
"compileOnSave": false,
"compilerOptions": {
"target": "es5",
"experimentalDecorators": true,
"module": "commonjs",
"noImplicitAny": true,
"removeComments": true,
"preserveConstEnums": true,
"sourceMap": true,
"outDir": "tmp/"
},
"filesGlob": [
"typings/tsd.d.ts",
"app/**/*.ts"
],
"files": [
"typings/tsd.d.ts",
"app/src/Components.ts",
"app/src/Modules.ts",
"app/src/app.ts",
"app/src/components/sampleComponent/SampleComponentController.ts",
"app/src/components/sampleComponent/sampleComponent.ts",
"app/src/components/sampleComponent/sampleComponentTemplate.ts",
"app/src/core/Component.ts",
"app/src/core/Module.ts",
"app/src/core/vendor.ts",
"app/src/routes/root/root.ts"
]
}