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

Commit 3e0b79f

Browse files
filipesilvawardbell
authored andcommitted
fix(ts-config): fix tsconfig ref (#3042)
1 parent 812968d commit 3e0b79f

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

public/docs/_examples/_boilerplate/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"sourceMap": true,
77
"emitDecoratorMetadata": true,
88
"experimentalDecorators": true,
9-
"lib": ["es2015", "dom"],
9+
"lib": [ "es2015", "dom" ],
1010
"noImplicitAny": true,
1111
"suppressImplicitAnyIndexErrors": true,
1212
"typeRoots": [
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es5",
4+
"module": "commonjs",
5+
"moduleResolution": "node",
6+
"sourceMap": true,
7+
"emitDecoratorMetadata": true,
8+
"experimentalDecorators": true,
9+
"lib": [ "es2015", "dom" ],
10+
"noImplicitAny": true,
11+
"suppressImplicitAnyIndexErrors": true
12+
}
13+
}

public/docs/ts/latest/guide/typescript-configuration.jade

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ a(id="tsconfig")
2424
[TypeScript wiki](http://www.typescriptlang.org/docs/handbook/tsconfig-json.html).
2525
:marked
2626
We created the following `tsconfig.json` during [Setup](setup.html):
27-
+makeJson('quickstart/ts/tsconfig.json', null, 'tsconfig.json')(format=".")
27+
+makeJson('quickstart/ts/tsconfig.1.json', null, 'tsconfig.json')(format=".")
2828
:marked
2929
This file contains options and flags that are essential for Angular applications.
3030

0 commit comments

Comments
 (0)