add vite-plugin-checker

This commit is contained in:
Philipp Kühn
2021-09-17 21:18:50 +02:00
parent de7f769ca3
commit 35ab0aa521
3 changed files with 73 additions and 9 deletions

View File

@@ -34,6 +34,7 @@
"simplify-js": "^1.2.4",
"tailwindcss": "^2.2.15",
"uuid": "^8.3.2",
"vite-plugin-checker": "^0.3.4",
"vue": "^3.0.5",
"vue-router": "^4.0.11",
"y-indexeddb": "^9.0.6",

View File

@@ -10,6 +10,7 @@ import globby from 'globby'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import reactRefresh from '@vitejs/plugin-react-refresh'
import checker from 'vite-plugin-checker'
export default defineConfig({
optimizeDeps: {
@@ -46,6 +47,8 @@ export default defineConfig({
},
plugins: [
// checker({ typescript: { tsconfigPath: '../tsconfig.json' } }),
// checker({ typescript: true }),
vue(),
reactRefresh(),