tor-browser

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

tsconfig.json (517B)


      1 {
      2  "include": ["**/*.mjs", "types/*.ts"],
      3  "exclude": [
      4    "content/SmartbarInput.mjs",
      5    "content/UrlbarInput.mjs",
      6    "UrlbarProviderGlobalActions.sys.mjs",
      7    "UrlbarView.sys.mjs",
      8    "private/SuggestBackendRust.sys.mjs",
      9    "tests/UrlbarTestUtils.sys.mjs"
     10  ],
     11  "extends": "../../../tools/@types/tsconfig.json",
     12 
     13  "compilerOptions": {
     14    "checkJs": true,
     15 
     16    "plugins": [
     17      {
     18        "transform": "../../../tools/ts/plugins/checkRootOnly.js",
     19        "transformProgram": true
     20      }
     21    ]
     22  }
     23 }