fix(ts-config): fix tsconfig ref (#3042)
This commit is contained in:
parent
812968d76b
commit
3e0b79f62e
@ -6,7 +6,7 @@
|
|||||||
"sourceMap": true,
|
"sourceMap": true,
|
||||||
"emitDecoratorMetadata": true,
|
"emitDecoratorMetadata": true,
|
||||||
"experimentalDecorators": true,
|
"experimentalDecorators": true,
|
||||||
"lib": ["es2015", "dom"],
|
"lib": [ "es2015", "dom" ],
|
||||||
"noImplicitAny": true,
|
"noImplicitAny": true,
|
||||||
"suppressImplicitAnyIndexErrors": true,
|
"suppressImplicitAnyIndexErrors": true,
|
||||||
"typeRoots": [
|
"typeRoots": [
|
||||||
|
13
public/docs/_examples/quickstart/ts/tsconfig.1.json
Normal file
13
public/docs/_examples/quickstart/ts/tsconfig.1.json
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
{
|
||||||
|
"compilerOptions": {
|
||||||
|
"target": "es5",
|
||||||
|
"module": "commonjs",
|
||||||
|
"moduleResolution": "node",
|
||||||
|
"sourceMap": true,
|
||||||
|
"emitDecoratorMetadata": true,
|
||||||
|
"experimentalDecorators": true,
|
||||||
|
"lib": [ "es2015", "dom" ],
|
||||||
|
"noImplicitAny": true,
|
||||||
|
"suppressImplicitAnyIndexErrors": true
|
||||||
|
}
|
||||||
|
}
|
@ -24,7 +24,7 @@ a(id="tsconfig")
|
|||||||
[TypeScript wiki](http://www.typescriptlang.org/docs/handbook/tsconfig-json.html).
|
[TypeScript wiki](http://www.typescriptlang.org/docs/handbook/tsconfig-json.html).
|
||||||
:marked
|
:marked
|
||||||
We created the following `tsconfig.json` during [Setup](setup.html):
|
We created the following `tsconfig.json` during [Setup](setup.html):
|
||||||
+makeJson('quickstart/ts/tsconfig.json', null, 'tsconfig.json')(format=".")
|
+makeJson('quickstart/ts/tsconfig.1.json', null, 'tsconfig.json')(format=".")
|
||||||
:marked
|
:marked
|
||||||
This file contains options and flags that are essential for Angular applications.
|
This file contains options and flags that are essential for Angular applications.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user