1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-25 02:36:26 +02:00
blog/tsconfig.json

29 lines
763 B
JSON

{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"jsx": "react-jsx",
"plugins": [{ "name": "typescript-plugin-css-modules" }],
"jsxImportSource": "react",
"allowJs": true,
"baseUrl": ".",
"paths": {
"@config/*": [".config/*"],
"@components/*": ["src/components/*"],
"@layouts/*": ["src/components/layouts/*"],
"@images/*": ["src/images/*"],
"@lib/*": ["src/lib/*"],
"@content/*": ["content/*"]
},
"typeRoots": ["./src/@types", "./node_modules/@types"]
}
// "exclude": ["node_modules", "public", "dist", "./**/*.js"],
// "include": [
// "./**/*.ts",
// "./**/*.tsx",
// "./**/*.mjs",
// "./**/*.astro",
// "./scripts/*.ts",
// "./.jest/**/*"
// ]
}