Skip to content

Add vite-plugin, jsconfig, dev-mode runtime to JS templates #10

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Mar 3, 2025
Merged
Prev Previous commit
Next Next commit
Add "src/**/*.d.ts" to vue includes
IanVS committed Mar 3, 2025
commit 416c1e52c7b76f109d4e970fa74ca15037968bea
4 changes: 2 additions & 2 deletions v3/internal/templates/vue/frontend/jsconfig.json.tmpl
Original file line number Diff line number Diff line change
@@ -16,12 +16,12 @@
"module": "ESNext",
"resolveJsonModule": true,
/**
* Enable checkJs if you'd like type checking in `.svelte` and `.js` files.
* Enable checkJs if you'd like type checking in `.vue` and `.js` files.
*/
"checkJs": false,
"strict": true,
"skipLibCheck": true,
{{if .LocalModulePath}}"customConditions": ["wails-development"],{{end}}
},
"include": ["src/**/*.js", "src/**/*.jsx", "src/**/*.vue", "bindings/**/*.d.ts"]
"include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.jsx", "src/**/*.vue", "bindings/**/*.d.ts"]
}