mirror of
https://github.com/ReVanced/revanced-bots.git
synced 2026-01-10 13:26:16 +00:00
28 lines
694 B
JSON
28 lines
694 B
JSON
{
|
|
"extends": ["@tsconfig/strictest"],
|
|
"compilerOptions": {
|
|
"lib": ["ESNext"],
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
|
|
"noEmitOnError": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"declaration": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"isolatedModules": true,
|
|
"allowImportingTsExtensions": false
|
|
},
|
|
"include": ["./**/*"],
|
|
"exclude": ["./packages/**/*"]
|
|
}
|