parent
b66d88434e
commit
66a864560c
|
@ -17,5 +17,10 @@
|
||||||
},
|
},
|
||||||
"vueCompilerOptions": {
|
"vueCompilerOptions": {
|
||||||
"target": 2.7
|
"target": 2.7
|
||||||
}
|
},
|
||||||
|
"ts-node": {
|
||||||
|
"compilerOptions": {
|
||||||
|
"module": "CommonJS",
|
||||||
|
}
|
||||||
|
},
|
||||||
}
|
}
|
|
@ -1,13 +1,13 @@
|
||||||
const webpack = require('webpack');
|
import webpack from 'webpack';
|
||||||
const path = require('path');
|
import path from 'path';
|
||||||
|
|
||||||
const WorkboxPlugin = require('workbox-webpack-plugin');
|
import WorkboxPlugin from 'workbox-webpack-plugin';
|
||||||
const TerserPlugin = require('terser-webpack-plugin');
|
import TerserPlugin from 'terser-webpack-plugin';
|
||||||
const NodePolyfillPlugin = require('node-polyfill-webpack-plugin');
|
import NodePolyfillPlugin from 'node-polyfill-webpack-plugin';
|
||||||
const { VueLoaderPlugin } = require('vue-loader');
|
import { VueLoaderPlugin } from 'vue-loader';
|
||||||
|
|
||||||
const appName = process.env.npm_package_name;
|
const appName = process.env.npm_package_name!;
|
||||||
const appVersion = process.env.npm_package_version;
|
const appVersion = process.env.npm_package_version!;
|
||||||
const buildMode = process.env.NODE_ENV;
|
const buildMode = process.env.NODE_ENV;
|
||||||
const isDev = buildMode === 'development';
|
const isDev = buildMode === 'development';
|
||||||
console.info('Building', appName, appVersion, '\n');
|
console.info('Building', appName, appVersion, '\n');
|
||||||
|
@ -38,7 +38,7 @@ module.exports = {
|
||||||
// Make sure sourcemaps have a proper path and do not
|
// Make sure sourcemaps have a proper path and do not
|
||||||
// leak local paths https://github.com/webpack/webpack/issues/3603
|
// leak local paths https://github.com/webpack/webpack/issues/3603
|
||||||
devtoolNamespace: appName,
|
devtoolNamespace: appName,
|
||||||
devtoolModuleFilenameTemplate(info) {
|
devtoolModuleFilenameTemplate(info: any) {
|
||||||
const rootDir = process.cwd();
|
const rootDir = process.cwd();
|
||||||
const rel = path.relative(rootDir, info.absoluteResourcePath);
|
const rel = path.relative(rootDir, info.absoluteResourcePath);
|
||||||
return `webpack:///${appName}/${rel}`;
|
return `webpack:///${appName}/${rel}`;
|
Loading…
Reference in New Issue