site/tsconfig.json

22 lines
602 B
JSON
Raw Normal View History

2024-04-05 00:03:11 +00:00
{
"compilerOptions": {
"lib": ["esnext", "DOM", "DOM.Iterable"],
"experimentalDecorators": true,
"module": "esnext",
"target": "esnext",
"moduleResolution": "node",
"strict": true,
"incremental": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"jsxImportSource": "preact",
2024-10-14 06:09:33 +00:00
"types": ["preact"] // Add this line
2024-04-05 00:03:11 +00:00
},
"include": ["**/*.ts", "**/*.tsx", "./package.json"],
"exclude": ["build/**/*.d.ts"],
}