mirror of
https://github.com/Lissy93/web-check.git
synced 2024-11-07 08:55:22 +01:00
43 lines
925 B
JSON
43 lines
925 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ES2020",
|
|
"moduleResolution": "node",
|
|
"allowImportingTsExtensions": true,
|
|
"plugins": [
|
|
{
|
|
"name": "@astrojs/ts-plugin"
|
|
},
|
|
],
|
|
"lib": [
|
|
"DOM",
|
|
"DOM.Iterable",
|
|
"ES2020"
|
|
],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "react",
|
|
"baseUrl": "src",
|
|
"paths": {
|
|
"@/*": ["*"],
|
|
"@components/*": ["components/*"],
|
|
"@layouts/*": ["layouts/*"],
|
|
"@pages/*": ["pages/*"],
|
|
"@styles/*": ["styles/*"],
|
|
"@assets/*": ["assets/*"],
|
|
}
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|