tor-browser

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

tsconfig.json (713B)


      1 {
      2  "compilerOptions": {
      3    "module": "commonjs",
      4    // Set the baseUrl to the root of the project.
      5    "baseUrl": "..",
      6    // Make the type checking as strict as possible.
      7    "strict": true,
      8    // TypeScript will check JS files only if they have a @ts-check comment in them.
      9    "allowJs": true,
     10    // Only type check, don't emit files.
     11    "noEmit": true,
     12    // Allow esnext syntax. Otherwise the default is ES5 only.
     13    "target": "esnext",
     14    "lib": ["esnext", "dom"]
     15  },
     16  // Add a @ts-check comment to a JS file to start type checking it.
     17  "include": ["./**/*.js", "./**/*.jsx"],
     18  "exclude": [
     19    "./client/debugger",
     20    "./client/shared/vendor",
     21    "./**/node_modules",
     22    "./**/test"
     23  ]
     24 }