31 строка
752 B
JavaScript
31 строка
752 B
JavaScript
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
|
|
const path = require('path');
|
|
const ROOT_PATH = path.resolve(__dirname, '..');
|
|
const CONFIG_PATH = path.resolve(ROOT_PATH, 'tsconfig.test.json');
|
|
|
|
module.exports = {
|
|
devtool: 'inline-source-map',
|
|
mode: 'development',
|
|
|
|
resolve: {
|
|
extensions: ['.js', '.ts']
|
|
},
|
|
|
|
module: {
|
|
rules: [{
|
|
test: /\.ts$/,
|
|
loader: 'ts-loader',
|
|
options: {
|
|
transpileOnly: true,
|
|
configFile: CONFIG_PATH,
|
|
context: ROOT_PATH,
|
|
},
|
|
exclude: /node_modules/
|
|
}]
|
|
},
|
|
|
|
plugins: [
|
|
new ForkTsCheckerWebpackPlugin({ tsconfig: CONFIG_PATH }),
|
|
]
|
|
};
|