2023-07-19 16:16:50 +00:00
|
|
|
{
|
2023-12-22 13:05:46 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"jsxImportSource": "hono/jsx",
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
"lib": [
|
|
|
|
"ESNext"
|
|
|
|
],
|
|
|
|
"module": "esnext",
|
|
|
|
"target": "esnext",
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
"moduleDetection": "force",
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"composite": true,
|
|
|
|
"strict": true,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"types": [
|
|
|
|
"bun-types" // add Bun global
|
|
|
|
],
|
|
|
|
"include": [
|
|
|
|
"src",
|
|
|
|
"src/media_process.js"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|