2022-06-11 22:59:03 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-07-10 00:24:06 +02:00
|
|
|
"target": "ES2020",
|
|
|
|
"module": "ES2020",
|
|
|
|
"moduleResolution": "node",
|
2024-05-05 18:45:23 +02:00
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"name": "@astrojs/ts-plugin"
|
|
|
|
},
|
|
|
|
],
|
|
|
|
"lib": [
|
|
|
|
"DOM",
|
|
|
|
"DOM.Iterable",
|
|
|
|
"ES2020"
|
|
|
|
],
|
2022-06-11 22:59:03 +02:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
2022-06-11 23:30:46 +02:00
|
|
|
"jsx": "react-jsx",
|
2024-05-12 00:14:07 +02:00
|
|
|
"jsxImportSource": "react",
|
2022-06-11 23:30:46 +02:00
|
|
|
"baseUrl": "src",
|
2024-05-12 00:14:07 +02:00
|
|
|
"paths": {
|
|
|
|
"@/*": ["*"],
|
|
|
|
"@components/*": ["components/*"],
|
|
|
|
"@layouts/*": ["layouts/*"],
|
|
|
|
"@pages/*": ["pages/*"],
|
2024-05-20 23:44:29 +02:00
|
|
|
"@styles/*": ["styles/*"],
|
|
|
|
"@assets/*": ["assets/*"],
|
2024-05-12 00:14:07 +02:00
|
|
|
}
|
2022-06-11 22:59:03 +02:00
|
|
|
},
|
2024-05-05 18:45:23 +02:00
|
|
|
"include": [
|
|
|
|
"src"
|
|
|
|
]
|
2022-06-11 22:59:03 +02:00
|
|
|
}
|