mirror of
https://github.com/RealKai42/qwerty-learner.git
synced 2026-04-04 22:09:04 +08:00
31 lines
790 B
JSON
31 lines
790 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"]
|
|
}
|