1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-30 21:52:05 +02:00
blog/tsconfig.json

17 lines
379 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 00:09:47 +02:00
"jsxImportSource": "react"
2019-10-02 13:35:50 +02:00
},
2023-08-30 02:10:25 +02:00
"exclude": ["node_modules", "public", "dist", "./**/*.js", "./**/*.astro"],
"include": [
"./**/*.ts",
"./**/*.tsx",
"./**/*.mjs",
"./scripts/*.ts",
"./.jest/**/*"
]
2019-10-02 13:35:50 +02:00
}