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

15 lines
343 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",
"plugins": [
{
"name": "typescript-plugin-css-modules"
}
],
"jsxImportSource": "react"
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
}