fix build errors in frontend-embed caused by vite not respecting the tsconfig setting
This commit is contained in:
parent
2b3fb2ef9f
commit
d18ec3ac2d
7 changed files with 81 additions and 27 deletions
|
|
@ -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"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue