Capital/tsconfig.json

11 lines
218 B
JSON
Raw Normal View History

2024-01-20 15:19:15 +00:00
{
"extends": "astro/tsconfigs/strict",
2024-01-21 17:06:43 +00:00
"exclude": ["./content", "./dist"],
2024-01-20 15:19:15 +00:00
"compilerOptions": {
2024-01-22 16:46:18 +00:00
"target": "es5",
"lib": ["esnext", "es2021"],
2024-01-20 15:19:15 +00:00
"jsx": "react-jsx",
2024-01-22 16:46:18 +00:00
"jsxImportSource": "react"
2024-01-21 02:34:27 +00:00
},
2024-01-21 16:28:49 +00:00
}