mirror of
https://github.com/RealKai42/qwerty-learner.git
synced 2026-04-05 06:19:08 +08:00
37 lines
823 B
JSON
37 lines
823 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": "src",
|
|
"paths": {
|
|
"@/assets/*": ["assets/*"],
|
|
"@/components/*": ["components/*"],
|
|
"@/hooks/*": ["hooks/*"],
|
|
"@/pages/*": ["pages/*"],
|
|
"@/resources/*": ["resources/*"],
|
|
"@/store/*": ["store/*"],
|
|
"@/utils/*": ["utils/*"]
|
|
},
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|