Skip to content
This repository was archived by the owner on Jun 25, 2019. It is now read-only.

Commit 675b916

Browse files
author
Felix Gladisch
committed
🔧 fix: tsconfig paths
1 parent d7ac315 commit 675b916

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

tsconfig-aot.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
]
1616
},
1717
"files": [
18-
"src/app/app.module.ts",
19-
"src/main-aot.ts"
18+
"./src/app/app.module.ts",
19+
"./src/main-aot.ts"
2020
],
2121
"angularCompilerOptions": {
22-
"genDir": "aot",
22+
"genDir": "./aot",
2323
"skipMetadataEmit" : true
2424
}
2525
}

tsconfig.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
"compileOnSave": false,
2222
"buildOnSave": false,
2323
"exclude": [
24-
"node_modules",
25-
"dist",
26-
"aot",
27-
"/src/main-aot.ts"
24+
"./node_modules",
25+
"./dist",
26+
"./aot",
27+
"./src/main-aot.ts"
2828
],
2929
"atom": {
3030
"rewriteTsconfig": false

0 commit comments

Comments
 (0)