Created
October 5, 2017 08:58
-
-
Save Zjaaspoer/1b376eaf5954e71483cd3fc41cd08cc5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"entry": [ | |
"/Techs/projects/bleeve/frontend-router/app.ts" | |
], | |
"module": { | |
"rules": [ | |
{ | |
"test": /\.tsx?$/, | |
"use": [ | |
"awesome-typescript-loader" | |
] | |
} | |
] | |
}, | |
"output": { | |
"filename": "app.js", | |
"path": "/Techs/projects/bleeve/frontend-router" | |
}, | |
"plugins": [ | |
new NamedModulesPlugin(), | |
new LoaderOptionsPlugin({ | |
debug: true, | |
minimize: true, | |
}), | |
new webpackNotifierPlugin({alwaysNotify: true}), | |
], | |
"resolve": { | |
"extensions": [ | |
".ts", | |
".js" | |
] | |
}, | |
"devtool": "inline-source-map", | |
"externals": "{...}", | |
"node": { | |
"__dirname": false | |
}, | |
"target": "node" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment