mirror of
https://github.com/DerTyp7/dertyp7.github.io.git
synced 2025-10-28 12:22:14 +01:00
38 lines
840 B
JSON
38 lines
840 B
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,
|
|
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"@/*": ["*"],
|
|
"@components/*": ["components/*"],
|
|
"@sections/*": ["sections/*"],
|
|
"@styles/*": ["styles/*"],
|
|
"@utils/*": ["utils/*"],
|
|
"@hooks/*": ["hooks/*"],
|
|
"@types/*": ["types/*"],
|
|
"@assets/*": ["assets/*"]
|
|
}
|
|
},
|
|
"include": ["src"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|