mirror of
https://github.com/gromlab-ru/slm-design.git
synced 2026-08-22 07:30:16 +03:00
36 lines
940 B
JSON
36 lines
940 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
||
|
|
"target": "es2023",
|
||
|
|
"lib": ["ES2023", "DOM"],
|
||
|
|
"module": "esnext",
|
||
|
|
"types": ["vite/client", "vitest/globals"],
|
||
|
|
"allowArbitraryExtensions": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"strict": true,
|
||
|
|
"paths": {
|
||
|
|
"app/*": ["./src/app/*"],
|
||
|
|
"compositions/*": ["./src/compositions/*"],
|
||
|
|
"domains/*": ["./src/domains/*"],
|
||
|
|
"infra/*": ["./src/infra/*"],
|
||
|
|
"shared/*": ["./src/shared/*"],
|
||
|
|
"ui/*": ["./src/ui/*"]
|
||
|
|
},
|
||
|
|
|
||
|
|
/* Bundler mode */
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"verbatimModuleSyntax": true,
|
||
|
|
"moduleDetection": "force",
|
||
|
|
"noEmit": true,
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
|
||
|
|
/* Linting */
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"erasableSyntaxOnly": true,
|
||
|
|
"noFallthroughCasesInSwitch": true
|
||
|
|
},
|
||
|
|
"include": ["src"]
|
||
|
|
}
|