44 lines
1.2 KiB
JSON
44 lines
1.2 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
"target": "es2023",
|
|
"lib": ["ES2023", "DOM"],
|
|
"module": "esnext",
|
|
"types": ["vite/client"],
|
|
"allowArbitraryExtensions": true,
|
|
"skipLibCheck": true,
|
|
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@components/*": ["./src/components/*"],
|
|
"@ui/*": ["./src/components/ui/*"],
|
|
"@common/*": ["./src/components/common/*"],
|
|
"@pages/*": ["./src/pages/*"],
|
|
"@hooks/*": ["./src/hooks/*"],
|
|
"@layouts/*": ["./src/layouts/*"],
|
|
"@features/*": ["./src/features/*"],
|
|
"@services/*": ["./src/services/*"],
|
|
"@utils/*": ["./src/utils/*"],
|
|
"@assets/*": ["./src/assets/*"],
|
|
"@types/*": ["./src/types/*"],
|
|
"@widgets/*": ["./src/components/widgets/*"],
|
|
"@styles/*": ["./src/styles/*"],
|
|
},
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
|
|
/* Linting */
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"erasableSyntaxOnly": false,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": ["src"]
|
|
}
|