2022-09-30 12:35:53 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-01-10 17:08:50 +00:00
|
|
|
"jsx": "react-jsx",
|
|
|
|
"jsxImportSource": "preact",
|
2022-09-30 12:35:53 -04:00
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
2023-01-10 17:08:50 +00:00
|
|
|
"target": "es2019",
|
|
|
|
"types": ["preact"],
|
|
|
|
/* noEmit - Vite builds (emits) files, not tsc. */
|
2022-09-30 12:35:53 -04:00
|
|
|
"noEmit": true,
|
|
|
|
/* Additional Options */
|
|
|
|
"strict": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"typeRoots": [
|
|
|
|
"./typings"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|