-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
48 lines (48 loc) · 1.75 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
37
38
39
40
41
42
43
44
45
46
47
48
{
"compileOnSave": false,
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"declaration": false,
"noImplicitAny": false,
"removeComments": false,
"noLib": true,
"outDir": "./dist/",
"emitDecoratorMetadata": true,
"experimentalDecorators": true
},
"filesGlob": [
"./**/*.ts",
"!./jspm_packages/**/*.ts",
"!./node_modules/**/*.ts"
],
"files": [
"./src/app.ts",
"./src/blur-image.ts",
"./src/child-router.ts",
"./src/main.ts",
"./src/users.ts",
"./src/welcome.ts",
"./type-definitions/aurelia-animator-css.d.ts",
"./type-definitions/aurelia-binding.d.ts",
"./type-definitions/aurelia-bootstrapper.d.ts",
"./type-definitions/aurelia-dependency-injection.d.ts",
"./type-definitions/aurelia-event-aggregator.d.ts",
"./type-definitions/aurelia-fetch-client.d.ts",
"./type-definitions/aurelia-framework.d.ts",
"./type-definitions/aurelia-history-browser.d.ts",
"./type-definitions/aurelia-history.d.ts",
"./type-definitions/aurelia-loader-default.d.ts",
"./type-definitions/aurelia-loader.d.ts",
"./type-definitions/aurelia-logging-console.d.ts",
"./type-definitions/aurelia-logging.d.ts",
"./type-definitions/aurelia-metadata.d.ts",
"./type-definitions/aurelia-path.d.ts",
"./type-definitions/aurelia-route-recognizer.d.ts",
"./type-definitions/aurelia-router.d.ts",
"./type-definitions/aurelia-task-queue.d.ts",
"./type-definitions/aurelia-templating-binding.d.ts",
"./type-definitions/aurelia-templating.d.ts",
"./type-definitions/es6.d.ts"
]
}