mirror of
https://github.com/StepanovPlaton/AboutMe.git
synced 2026-04-03 20:30:49 +04:00
36 lines
1.0 KiB
JSON
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/**/*"]
|
|
} |