Merge branch 'main' of github.com:caoxiemeihao/electron-vue-vite into main

This commit is contained in:
草鞋没号 2021-07-21 08:16:28 +08:00
commit 2a208be944
2 changed files with 7 additions and 4 deletions

View File

@ -20,9 +20,7 @@ export default (env = 'production') => {
nodeResolve(),
commonjs(),
json(),
typescript({
module: 'ESNext',
}),
typescript(),
alias({
entries: [
{ find: '@render', replacement: join(__dirname, '../src/render') },

View File

@ -1,7 +1,7 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "CommonJS",
"module": "ESNext",
"moduleResolution": "node",
"importHelpers": true,
"jsx": "preserve",
@ -17,5 +17,10 @@
"@root/*": ["./*"]
},
"allowSyntheticDefaultImports": true
},
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
}
}