Initializing a diagnostic tools. WIP
This commit is contained in:
@ -37,4 +37,23 @@ config.push({
|
||||
}
|
||||
})
|
||||
|
||||
config.push({
|
||||
entry: "./client/settings.ts",
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.tsx?$/,
|
||||
use: 'ts-loader'
|
||||
}
|
||||
]
|
||||
},
|
||||
resolve: {
|
||||
extensions: [ '.tsx', '.ts', '.js' ],
|
||||
},
|
||||
output: {
|
||||
path: path.resolve(__dirname, "./dist/client/settings"),
|
||||
filename: "./settings.js"
|
||||
}
|
||||
})
|
||||
|
||||
module.exports = config
|
||||
|
Reference in New Issue
Block a user