Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit 549bf8e

Browse files
committed
fix tsconfig, default build task, json file
1 parent 80e3ff5 commit 549bf8e

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ function runE2eTsTests(appDir, outputFile) {
271271
}
272272

273273
var config = {
274-
build: exampleConfig.build || 'tsc',
274+
build: exampleConfig.build || 'build',
275275
run: exampleConfig.run || 'serve:e2e'
276276
};
277277

public/docs/_examples/_boilerplate/src/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"noImplicitAny": true,
1111
"suppressImplicitAnyIndexErrors": true,
1212
"typeRoots": [
13-
"../../node_modules/@types/"
13+
"../../../node_modules/@types/"
1414
]
1515
},
1616
"compileOnSave": true,

public/docs/_examples/cli-quickstart/ts/src/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"noImplicitAny": true,
1111
"suppressImplicitAnyIndexErrors": true,
1212
"typeRoots": [
13-
"../../node_modules/@types/"
13+
"../../../node_modules/@types/"
1414
]
1515
},
1616
"compileOnSave": true,

0 commit comments

Comments
 (0)