43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
||
|
|
"target": "ES2022",
|
||
|
|
"useDefineForClassFields": true,
|
||
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
||
|
|
"module": "ESNext",
|
||
|
|
"skipLibCheck": false,
|
||
|
|
|
||
|
|
/* Bundler mode */
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"verbatimModuleSyntax": true,
|
||
|
|
"moduleDetection": "force",
|
||
|
|
"noEmit": true,
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
|
||
|
|
/* Linting */
|
||
|
|
"strict": true,
|
||
|
|
"noImplicitAny": true,
|
||
|
|
"strictNullChecks": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"erasableSyntaxOnly": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
"noUncheckedSideEffectImports": true,
|
||
|
|
|
||
|
|
/* Path mapping */
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["./src/*"],
|
||
|
|
"@components/*": ["./src/components/*"],
|
||
|
|
"@features/*": ["./src/features/*"],
|
||
|
|
"@services/*": ["./src/services/*"],
|
||
|
|
"@hooks/*": ["./src/hooks/*"],
|
||
|
|
"@utils/*": ["./src/utils/*"],
|
||
|
|
"@types/*": ["./src/types/*"]
|
||
|
|
},
|
||
|
|
"noImplicitReturns": true
|
||
|
|
},
|
||
|
|
"include": ["src"]
|
||
|
|
}
|