32 lines
824 B
JSON
32 lines
824 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": false,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@components/*": ["src/components/*"],
|
|
"@features/*": ["src/features/*"],
|
|
"@assets/*": ["src/assets/*"],
|
|
"@utils/*": ["src/utils/*"],
|
|
"@api/*": ["src/api/*"],
|
|
"@services/*": ["src/services/*"]
|
|
},
|
|
"types": ["vitest"]
|
|
},
|
|
"include": ["src"]
|
|
}
|