28 lines
688 B
JSON
28 lines
688 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"types": ["vite/client", "node"],
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": false,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@src/*": ["src/*"],
|
|
"@assets/*": ["src/assets/*"],
|
|
"@pages/*": ["src/pages/*"]
|
|
}
|
|
},
|
|
"include": ["src",
|
|
"utils", "vite.config.ts"],
|
|
}
|