Skip to content

Commit 21a7d97

Browse files
committed
Fix tsconfig issues. Not listing each file anymore.
1 parent c606cae commit 21a7d97

File tree

3 files changed

+8
-20
lines changed

3 files changed

+8
-20
lines changed

app/references.d.ts

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/// <reference path="../node_modules/angular2/typings/es6-shim/es6-shim.d.ts" />
2+
/// <reference path="../node_modules/angular2/typings/node/node.d.ts" />
3+
/// <reference path="../node_modules/tns-core-modules/tns-core-modules.base.d.ts" />

references.d.ts

-1
This file was deleted.

tsconfig.json

+5-19
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,15 @@
11
{
22
"compilerOptions": {
3+
"outDir": "app",
4+
"rootDir": "app",
35
"module": "commonjs",
46
"target": "es5",
57
"inlineSourceMap": true,
8+
"experimentalDecorators": true,
9+
"removeComments": false,
610
"emitDecoratorMetadata": true,
7-
"experimentalDecorators": true
11+
"noEmitOnError": true
812
},
9-
"files": [
10-
"app/app.component.ts",
11-
"app/main.ts",
12-
"app/compat.d.ts",
13-
"app/shared/config.ts",
14-
"app/shared/grocery/grocery.ts",
15-
"app/shared/grocery/grocery-list.service.ts",
16-
"app/shared/user/user.ts",
17-
"app/shared/user/user.service.ts",
18-
"app/pages/list/list.component.ts",
19-
"app/pages/login/login.component.ts",
20-
"app/pages/register/register.component.ts",
21-
"node_modules/tns-core-modules/tns-core-modules.base.d.ts"
22-
],
23-
"filesGlob": [
24-
"node_modules/tns-core-modules/tns-core-modules.base.d.ts",
25-
"app/**/*.ts"
26-
],
2713
"exclude": [
2814
"node_modules",
2915
"platforms"

0 commit comments

Comments
 (0)