Files
AboutMe/tsconfig.json
2026-02-02 22:47:52 +03:00

36 lines
1.0 KiB
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
"jsx": "react-jsx",
"jsxImportSource": "react",
"baseUrl": ".",
"strictNullChecks": true,
"allowJs": false,
"declaration": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"types": ["astro/client"],
"plugins": [
{
"name": "@astrojs/ts-plugin"
}
],
"paths": {
"@assets/*": ["src/assets/*"],
"@i18n/*": ["src/i18n/*"],
"@constants/*": ["src/constants/*"],
"@utils/*": ["src/utils/*"],
"@components/*": ["src/components/*"],
"@pages/*": ["src/pages/*"],
"@layouts/*": ["src/layouts/*"],
"@styles/*": ["src/styles/*"],
"@/*": ["src/*"],
},
"noEmit": true,
"allowImportingTsExtensions": true,
},
"include": ["src/**/*"]
}