-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
36 lines (34 loc) · 858 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
{
"compilerOptions": {
"outDir": "dist/app",
"target": "es5",
"module": "system",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": true,
"noImplicitAny": false
},
"exclude": [
"node_modules",
"typings/main",
"typings/main.d.ts"
],
"filesGlob": [
"app/**/*.ts",
"typings/**/*.d.ts",
"node_modules/videogular2/core.d.ts",
"node_modules/videogular2/controls.d.ts",
"node_modules/videogular2/overlay-play.d.ts",
"node_modules/videogular2/dist/vg-360/*.ts"
],
"files": [
"app/boot.ts",
"app/components/app.component.ts",
"app/components/media.component.ts",
"app/components/player.component.ts",
"app/components/truncate.component.ts",
"app/services/media.service.ts"
]
}