UNPKG
angular-webpack-quickstart
Version:
latest (0.1.2)
0.1.2
Angular QuickStart with Webpack 2 - source from the documentation.
angular-webpack-quickstart
/
e2e
/
tsconfig.json
16 lines
•
392 B
JSON
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"compilerOptions"
:
{
"target"
:
"es5"
,
"module"
:
"commonjs"
,
"moduleResolution"
:
"node"
,
"sourceMap"
:
true
,
"emitDecoratorMetadata"
:
true
,
"experimentalDecorators"
:
true
,
"lib"
:
[
"es2015"
,
"dom"
]
,
"noImplicitAny"
:
true
,
"suppressImplicitAnyIndexErrors"
:
true
}
}