41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
/* Path aliases */
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@shared/*": ["./src/shared/*"],
|
|
"@components/*": ["./src/shared/components/*"],
|
|
"@stores/*": ["./src/shared/stores/*"],
|
|
"@services/*": ["./src/shared/services/*"],
|
|
"@hooks/*": ["./src/shared/hooks/*"],
|
|
"@types/*": ["./src/shared/types/*"],
|
|
"@utils/*": ["./src/shared/utils/*"],
|
|
"@constants/*": ["./src/shared/constants/*"],
|
|
"@apps/*": ["./src/apps/*"]
|
|
}
|
|
},
|
|
"include": ["src"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|