redoc/e2e/plugins/cy-ts-preprocessor.js

30 lines
484 B
JavaScript
Raw Normal View History

const wp = require('@cypress/webpack-preprocessor');
const webpackOptions = {
resolve: {
extensions: ['.ts', '.js'],
},
module: {
rules: [
{
test: /\.ts$/,
exclude: [/node_modules/],
use: [
{
2018-03-17 16:11:52 +03:00
loader: 'ts-loader',
options: {
2018-03-17 16:11:52 +03:00
configFile: 'e2e/tsconfig.json',
},
},
],
},
],
},
};
const options = {
webpackOptions,
};
module.exports = wp(options);