This commit is contained in:
2024-12-01 23:58:21 +08:00
parent 5567c62d53
commit 5f28d4a149
22 changed files with 1414 additions and 3 deletions

42
tsconfig.app.json Normal file
View File

@@ -0,0 +1,42 @@
{
"compilerOptions": {
"jsx": "react",
"target": "ES2020",
"useDefineForClassFields": true,
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsxFragmentFactory": "Fragment",
"jsxFactory": "h",
"baseUrl": "./",
"typeRoots": [
"./node_modules/@types",
"./node_modules/@kevisual/types",
],
"paths": {
"@/*": [
"src/*"
]
},
/* Linting */
"strict": true,
"noImplicitAny": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true
},
"include": [
"src",
"typings.d.ts"
]
}