1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-28 16:48:00 +02:00
blog/tsconfig.json

29 lines
763 B
JSON
Raw Normal View History

2019-10-02 13:35:50 +02:00
{
"extends": "astro/tsconfigs/strict",
2019-10-02 13:35:50 +02:00
"compilerOptions": {
2023-08-30 00:09:47 +02:00
"jsx": "react-jsx",
2023-08-30 02:10:25 +02:00
"plugins": [{ "name": "typescript-plugin-css-modules" }],
2023-08-30 19:44:19 +02:00
"jsxImportSource": "react",
2023-09-04 23:15:36 +02:00
"allowJs": true,
2023-08-30 19:44:19 +02:00
"baseUrl": ".",
"paths": {
"@config/*": [".config/*"],
"@components/*": ["src/components/*"],
"@layouts/*": ["src/components/layouts/*"],
"@images/*": ["src/images/*"],
2023-08-31 03:03:45 +02:00
"@lib/*": ["src/lib/*"],
2023-09-04 21:59:08 +02:00
"@content/*": ["content/*"]
2023-09-05 03:26:50 +02:00
},
"typeRoots": ["./src/@types", "./node_modules/@types"]
2023-08-30 04:53:12 +02:00
}
// "exclude": ["node_modules", "public", "dist", "./**/*.js"],
// "include": [
// "./**/*.ts",
// "./**/*.tsx",
// "./**/*.mjs",
// "./**/*.astro",
// "./scripts/*.ts",
// "./.jest/**/*"
// ]
2019-10-02 13:35:50 +02:00
}