-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
36 lines (36 loc) · 1.13 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
31
32
33
34
35
36
{
"version": "1.6.0",
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"declaration": false,
"noImplicitAny": true,
"removeComments": true,
"noLib": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true
},
"files": [
"src/app/app.ts",
"src/app/common/api_service.ts",
"src/app/common/config_local.ts",
"src/app/common/config_mock.ts",
"src/app/common/config_production.ts",
"src/app/common/config_staging.ts",
"src/app/common/config.ts",
"src/app/components/header/header.ts",
"src/app/components/loading_spinner/loading_spinner.ts",
"src/app/components/login/login.ts",
"src/app/components/slidedeck/location_patchup_service.ts",
"src/app/components/slidedeck/slidedeck.ts",
"src/app/components/workshop_list/workshop_list.ts",
"src/app/components/workshop/workshop.ts"
],
"filesGlob": [
"./src/**/*.ts",
"./tsd_typings/**/*.d.ts"
],
"compileOnSave": false,
"exclude": []
}