dashboard/shell/creators/app/files/vue.config.js

11 lines
302 B
JavaScript

/**
* This file is here purely to support using the typescript version of the vue config vue.config.ts.
*/
require('ts-node').register({
project: './tsconfig.json',
compilerOptions: { module: 'commonjs' },
logError: true
});
module.exports = require('./vue.config.ts').default;