mirror of
https://github.com/vndangkhoa/Sys-Arc-Visl.git
synced 2026-04-04 17:08:17 +07:00
62 lines
No EOL
1.2 KiB
JSON
62 lines
No EOL
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
"target": "ES2022",
|
|
"useDefineForClassFields": true,
|
|
"lib": [
|
|
"ES2022",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"module": "ESNext",
|
|
"types": [
|
|
"vite/client"
|
|
],
|
|
"skipLibCheck": true,
|
|
/* Path Aliases */
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
],
|
|
"@/components/*": [
|
|
"./src/components/*"
|
|
],
|
|
"@/hooks/*": [
|
|
"./src/hooks/*"
|
|
],
|
|
"@/lib/*": [
|
|
"./src/lib/*"
|
|
],
|
|
"@/store/*": [
|
|
"./src/store/*"
|
|
],
|
|
"@/types/*": [
|
|
"./src/types/*"
|
|
],
|
|
"@/styles/*": [
|
|
"./src/styles/*"
|
|
],
|
|
"@/pages/*": [
|
|
"./src/pages/*"
|
|
]
|
|
},
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"erasableSyntaxOnly": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedSideEffectImports": true
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
} |