fix build errors in frontend-embed caused by vite not respecting the tsconfig setting

This commit is contained in:
Hazelnoot 2025-10-07 19:49:02 -04:00
parent 2b3fb2ef9f
commit d18ec3ac2d
7 changed files with 81 additions and 27 deletions

View file

@ -1,23 +1,20 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "../shared/tsconfig.scripts.jsonc",
"compilerOptions": {
"typeRoots": [
"./@types",
"./node_modules/@vue-macros",
"./node_modules/@types",
"./node_modules"
],
"types": [
"vite/client",
]
},
"include": [
"*.js",
"*.ts"
"*.ts",
"scripts/**/*.ts",
"scripts/**/*.js",
"scripts/**/*.mjs",
"scripts/**/*.cjs"
],
"exclude": [
"node_modules",
"vue-shims.d.ts"
"vue-shims.d.ts",
"src",
"test",
"@types",
"assets"
]
}