tor-browser

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

node.tsconfig.json (592B)


      1 // Typescript configuration for compile sources and
      2 // dependent files for usage directly with Node.js. This
      3 // is useful for running scripts in tools/ directly with Node
      4 // without including extra dependencies.
      5 {
      6  "extends": "./tsconfig.json",
      7  "compilerOptions": {
      8    "module": "commonjs",
      9    "incremental": false,
     10    "noEmit": false,
     11    "declaration": false,
     12  },
     13 
     14  "exclude": [
     15    "src/common/runtime/wpt.ts",
     16    "src/common/runtime/standalone.ts",
     17    "src/common/runtime/helper/test_worker.ts",
     18    "src/webgpu/web_platform/worker/worker_launcher.ts"
     19  ]
     20 }