summaryrefslogtreecommitdiffstats
path: root/dom/webgpu/tests/cts/checkout/node.tsconfig.json
blob: 74707d408d492c0957b059aea4e415052d1fa809 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Typescript configuration for compile sources and
// dependent files for usage directly with Node.js. This
// is useful for running scripts in tools/ directly with Node
// without including extra dependencies.
{
  "extends": "./tsconfig.json",
  "compilerOptions": {
    "module": "commonjs",
    "incremental": false,
    "noEmit": false,
    "declaration": false,
  },

  "exclude": [
    "src/common/runtime/wpt.ts",
    "src/common/runtime/standalone.ts",
    "src/common/runtime/helper/test_worker.ts",
    "src/webgpu/web_platform/worker/worker_launcher.ts"
  ]
}