File tree 3 files changed +5
-6
lines changed
3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 3
3
"target" : " esnext" ,
4
4
"module" : " esnext" ,
5
5
"moduleResolution" : " node" ,
6
- "esModuleInterop" : true ,
7
6
"sourceMap" : true ,
8
7
"newLine" : " LF" ,
9
8
},
Original file line number Diff line number Diff line change 1
1
// tslint:disable: no-default-export
2
- import convert from "convert-source-map" ;
2
+ import * as convert from "convert-source-map" ;
3
3
import { createInstrumenter , RawSourceMap } from "istanbul-lib-instrument" ;
4
- import loaderUtils from "loader-utils" ;
4
+ import * as loaderUtils from "loader-utils" ;
5
5
import mergeSourceMap from "merge-source-map" ;
6
- import path from "path" ;
6
+ import * as path from "path" ;
7
7
import validateOptions from "schema-utils" ;
8
8
import { loader } from "webpack" ;
9
- import optionsSchema from "./options-schema.json" ;
9
+ import * as optionsSchema from "./options-schema.json" ;
10
10
import { defaultOptions , Options } from "./options.js" ;
11
11
12
12
/**
Original file line number Diff line number Diff line change 3
3
"target" : " esnext" ,
4
4
"module" : " commonjs" ,
5
5
"moduleResolution" : " node" ,
6
- "esModuleInterop" : true ,
6
+ "esModuleInterop" : true , // This is necessary due to a type definition bug in "schema-utils"
7
7
"resolveJsonModule" : true ,
8
8
"lib" : [
9
9
" esnext" ,
You can’t perform that action at this time.
0 commit comments