2023-05-28 17:44:08 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-07-22 17:27:41 -07:00
|
|
|
"lib": ["esnext", "DOM", "DOM.Iterable"],
|
2023-07-15 23:02:12 -07:00
|
|
|
"experimentalDecorators": true,
|
2023-05-28 17:44:08 -07:00
|
|
|
"module": "esnext",
|
|
|
|
"target": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"strict": true,
|
|
|
|
"incremental": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"jsx": "react-jsx",
|
2024-02-05 19:45:36 +09:00
|
|
|
"jsxImportSource": "preact",
|
2023-05-28 17:44:08 -07:00
|
|
|
},
|
2023-07-22 17:27:41 -07:00
|
|
|
"include": ["**/*.ts", "**/*.tsx", "./package.json"],
|
2024-02-05 19:45:36 +09:00
|
|
|
"exclude": ["build/**/*.d.ts"],
|
2023-05-28 17:44:08 -07:00
|
|
|
}
|