Finished migration to TypeScript, temporary disabled char creator
This commit is contained in:
@@ -4,7 +4,7 @@ module.exports = {
|
||||
mode: 'production',
|
||||
entry: './index.ts',
|
||||
output: {
|
||||
path: path.resolve(__dirname),
|
||||
path: path.resolve(__dirname, '..', '..', 'client_packages'),
|
||||
filename: 'index.js'
|
||||
},
|
||||
module: {
|
||||
@@ -15,7 +15,12 @@ module.exports = {
|
||||
},
|
||||
{
|
||||
test: /\.ts$/,
|
||||
use: { loader: 'ts-loader' }
|
||||
use: {
|
||||
loader: 'ts-loader',
|
||||
options: {
|
||||
allowTsInNodeModules: true
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user