mirror of
https://github.com/ReVanced/revanced-bots.git
synced 2026-01-11 05:46:16 +00:00
18 lines
575 B
JSON
Executable File
18 lines
575 B
JSON
Executable File
{
|
|
// `bun-types` will not be added until https://github.com/oven-sh/bun/issues/7247 is fixed
|
|
"extends": ["@tsconfig/strictest", /* "bun-types" */],
|
|
"compilerOptions": {
|
|
"lib": ["ESNext"],
|
|
"module": "NodeNext",
|
|
"moduleResolution": "Bundler",
|
|
"target": "ESNext",
|
|
"skipLibCheck": true,
|
|
"skipDefaultLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"declaration": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"isolatedModules": true,
|
|
},
|
|
}
|