tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

tsconfig.base.json (1036B)


      1 {
      2  "compilerOptions": {
      3    "allowJs": true,
      4    "alwaysStrict": true,
      5    "checkJs": true,
      6    "composite": true,
      7    "declaration": true,
      8    "declarationMap": true,
      9    "esModuleInterop": true,
     10    "incremental": true,
     11    "module": "ES2022",
     12    "moduleResolution": "Bundler",
     13    "noFallthroughCasesInSwitch": true,
     14    "noImplicitAny": true,
     15    "noImplicitOverride": true,
     16    "noImplicitReturns": true,
     17    "noImplicitThis": true,
     18    "noPropertyAccessFromIndexSignature": true,
     19    "noUncheckedIndexedAccess": true,
     20    "noUnusedLocals": true,
     21    "noUnusedParameters": true,
     22    "resolveJsonModule": true,
     23    "skipLibCheck": true,
     24    "sourceMap": true,
     25    "strict": true,
     26    "strictBindCallApply": true,
     27    "strictFunctionTypes": true,
     28    "strictNullChecks": true,
     29    "strictPropertyInitialization": true,
     30    "target": "ES2022",
     31    "typeRoots": [
     32      "./node_modules/@types",
     33      "${configDir}/node_modules/@types",
     34      "${configDir}/../node_modules/@types"
     35    ],
     36    "useUnknownInCatchVariables": true
     37  }
     38 }