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

10 lines
281 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": {
2021-12-02 19:23:17 +01:00
"jsx": "react",
2021-03-14 01:34:04 +01:00
"plugins": [{ "name": "typescript-plugin-css-modules" }]
2019-10-02 13:35:50 +02:00
},
"exclude": ["node_modules", "public", "dist", "*.js"],
"include": ["./*.ts", "./src/**/*", "./scripts/*.ts", "./.jest/**/*"]
2019-10-02 13:35:50 +02:00
}