blog-robertops-v2/tsconfig.json
L4Ph 197d524b53
feat: add FrontMatter CMS, biome, translation, etc.
* add Frontmatter CMS

* add biome

* update

* update

* fixed & add docs

* fix translation.ts

* fix translation
2024-01-21 12:54:41 +08:00

23 lines
478 B
JSON

{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"baseUrl": ".",
"strictNullChecks": true,
"allowJs": true,
"plugins": [
{
"name": "@astrojs/ts-plugin"
}
],
"paths": {
"@components/*": ["src/components/*"],
"@assets/*": ["src/assets/*"],
"@utils/*": ["src/utils/*"],
"@i18n/*": ["src/i18n/*"],
"@layouts/*": ["src/layouts/*"],
"@/*": ["src/*"]
}
},
"include": ["src/**/*"]
}