fix build error

This commit is contained in:
yoan
2024-12-11 22:28:04 +08:00
parent fba647313d
commit ba01edc691
10 changed files with 26 additions and 33 deletions

View File

@@ -4,18 +4,12 @@
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "ES2020",
"useDefineForClassFields": true,
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
]
"@/*": ["./src/*"]
},
/* Bundler mode */
"moduleResolution": "bundler",
@@ -31,7 +25,5 @@
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": [
"src"
]
}
"include": ["src", "src/declarations.d.ts"]
}