Removed webpack
parent
046604cb54
commit
a85dc7c030
|
@ -58,9 +58,7 @@
|
||||||
"nyc": "^15.1.0",
|
"nyc": "^15.1.0",
|
||||||
"source-map-loader": "^2.0.1",
|
"source-map-loader": "^2.0.1",
|
||||||
"ts-loader": "^8.0.17",
|
"ts-loader": "^8.0.17",
|
||||||
"typescript": "^4.2.0-insiders.20210210",
|
"typescript": "^4.2.0-insiders.20210210"
|
||||||
"webpack": "^5.22.0",
|
|
||||||
"webpack-cli": "^4.5.0"
|
|
||||||
},
|
},
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/MillenniumEarl/F95API/issues"
|
"url": "https://github.com/MillenniumEarl/F95API/issues"
|
||||||
|
|
|
@ -3,11 +3,10 @@
|
||||||
"experimentalDecorators": true,
|
"experimentalDecorators": true,
|
||||||
"outDir": "./dist",
|
"outDir": "./dist",
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
"target": "es6",
|
"module": "es6",
|
||||||
|
"target": "es5",
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "node",
|
||||||
"allowSyntheticDefaultImports": true,
|
"allowSyntheticDefaultImports": true,
|
||||||
},
|
},
|
||||||
"include": [
|
"include": ["./src/**/*"]
|
||||||
"./src/**/*"
|
|
||||||
]
|
|
||||||
}
|
}
|
|
@ -1,11 +0,0 @@
|
||||||
module: {
|
|
||||||
loaders: [
|
|
||||||
// All files with a '.ts' or '.tsx' extension will be handled by 'awesome-typescript-loader'.
|
|
||||||
{ test: /\.tsx?$/, loader: "awesome-typescript-loader" }
|
|
||||||
],
|
|
||||||
|
|
||||||
preLoaders: [
|
|
||||||
// All output '.js' files will have any sourcemaps re-processed by 'source-map-loader'.
|
|
||||||
{ test: /\.js$/, loader: "source-map-loader" }
|
|
||||||
]
|
|
||||||
}
|
|
Loading…
Reference in New Issue