Updated dependencies

This commit is contained in:
Benjamin Bädorf 2021-02-22 13:35:56 +01:00
parent bc49cbfd30
commit d64d9e4af7
No known key found for this signature in database
GPG key ID: 4406E80E13CD656C
3 changed files with 995 additions and 1901 deletions

2875
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -11,12 +11,13 @@
"vue": "^3.0.4"
},
"devDependencies": {
"@vue/compiler-sfc": "^3.0.4",
"@vuedx/typecheck": "^0.3.1-insiders-1606311019.0",
"@vuedx/typescript-plugin-vue": "^0.3.1-insiders-1606311019.0",
"@vitejs/plugin-vue-jsx": "^1.1.0",
"@vue/compiler-sfc": "^3.0.5",
"@vuedx/typecheck": "^0.6.3",
"@vuedx/typescript-plugin-vue": "^0.6.3",
"lerna": "^3.22.1",
"sass": "^1.30.0",
"typescript": "^4.1.2",
"vite": "^1.0.0-rc.13"
"vite": "^2.0.1"
}
}

View file

@ -1,3 +1,11 @@
module.exports = {
alias: {},
import vueJsx from '@vitejs/plugin-vue-jsx';
export default {
plugins: [
vueJsx({}),
],
esbuild: {
jsxFactory: 'h',
jsxFragment: 'Fragment',
},
};