2023-06-27 18:03:52 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"lib": ["ESNext", "dom"],
|
|
|
|
"module": "esnext",
|
|
|
|
"target": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"moduleDetection": "force",
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
"strict": true,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"noEmit": true,
|
2023-09-01 05:05:06 +00:00
|
|
|
"noImplicitAny": true,
|
2023-06-27 18:03:52 +00:00
|
|
|
"types": [
|
|
|
|
// disabled because of https://github.com/oven-sh/bun/issues/3030
|
|
|
|
// "bun-types" // add Bun global
|
|
|
|
]
|
2023-09-01 05:05:06 +00:00
|
|
|
},
|
|
|
|
"include": ["js"],
|
|
|
|
"exclude": ["node_modules"]
|
2023-06-27 18:03:52 +00:00
|
|
|
}
|