Skip to content

Commit 22cebe7

Browse files
Make TS build a bit faster. This is pretty safe, but could easily be reverted if any problems emerge.
1 parent 8a5dbf7 commit 22cebe7

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

templates/Angular2Spa/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"target": "es5",
55
"sourceMap": true,
66
"experimentalDecorators": true,
7-
"emitDecoratorMetadata": true
7+
"emitDecoratorMetadata": true,
8+
"skipDefaultLibCheck": true
89
},
910
"exclude": [
1011
"node_modules"

templates/ReactSpa/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"moduleResolution": "node",
44
"target": "es6",
55
"jsx": "preserve",
6-
"sourceMap": true
6+
"sourceMap": true,
7+
"skipDefaultLibCheck": true
78
},
89
"exclude": [
910
"node_modules"

0 commit comments

Comments
 (0)