2023-05-29 00:44:08 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-07-23 00:27:41 +00:00
|
|
|
"lib": ["esnext", "DOM", "DOM.Iterable"],
|
2023-07-16 06:02:12 +00:00
|
|
|
"experimentalDecorators": true,
|
2023-05-29 00:44:08 +00:00
|
|
|
"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"
|
|
|
|
},
|
2023-07-23 00:27:41 +00:00
|
|
|
"include": ["**/*.ts", "**/*.tsx", "./package.json"],
|
|
|
|
"exclude": ["build/**/*.d.ts"]
|
2023-05-29 00:44:08 +00:00
|
|
|
}
|