修改项目配置

This commit is contained in:
CrescentLeaf
2025-12-06 11:08:39 +08:00
parent d433ceb4a9
commit 02b0708426
6 changed files with 21 additions and 48 deletions

18
client/tsconfig.json Normal file
View File

@@ -0,0 +1,18 @@
{
"compilerOptions": {
"target": "ES2022",
"lib": [
"ES2022",
"DOM",
"DOM.Iterable"
],
"jsx": "react-jsx",
"module": "ESNext",
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"noEmit": true
}
}