File tree 2 files changed +7
-10
lines changed
blueprints/ng2/files/__path__
2 files changed +7
-10
lines changed Original file line number Diff line number Diff line change 4
4
"declaration" : false ,
5
5
"emitDecoratorMetadata" : true ,
6
6
"experimentalDecorators" : true ,
7
- "mapRoot" : " /" ,
8
- "module" : " commonjs" ,
7
+ "module" : " es6" ,
8
+ "target" : " es5" ,
9
+ "lib" : [" es6" , " dom" ],
9
10
"moduleResolution" : " node" ,
10
11
"outDir" : " ./dist/" ,
11
12
"rootDir" : " ." ,
13
+ "mapRoot" : " /" ,
12
14
"sourceMap" : true ,
13
- "sourceRoot" : " ." ,
14
- "target" : " es2015"
15
+ "sourceRoot" : " ."
15
16
},
16
17
"exclude" : [
17
18
" node_modules" ,
Original file line number Diff line number Diff line change @@ -42,12 +42,8 @@ export const getWebpackCommonConfig = function(projectRoot: string) {
42
42
loader : 'awesome-typescript-loader' ,
43
43
query : {
44
44
useWebpackText : true ,
45
- tsconfig : path . resolve ( projectRoot , './src/tsconfig.json' ) ,
46
- // resolveGlobs: false,
47
- module : "es2015" ,
48
- target : "es5" ,
49
- lib : [ 'es6' , 'dom' ] ,
50
- useForkChecker : true
45
+ useForkChecker : true ,
46
+ tsconfig : path . resolve ( projectRoot , './src/tsconfig.json' )
51
47
}
52
48
} ,
53
49
{
You can’t perform that action at this time.
0 commit comments