github.com/munnerz/test-infra@v0.0.0-20190108210205-ce3d181dc989/tsconfig.json (about)

     1  {
     2    "compilerOptions": {
     3      "lib": ["dom", "es6", "ScriptHost", "es2015.core", "dom.iterable", "es2016.array.include"],
     4      "strict": true,
     5      "allowSyntheticDefaultImports": true,
     6      // Emulate Bazel's workspace path lookup for the benefit of non-bazel tooling.
     7      // NB: Bazel ignores whatever we put here, so any other values won't work.
     8      "baseUrl": ".",
     9      "paths": {
    10        "test_infra/*": ["*"]
    11      }
    12    },
    13    "bazelOptions": {
    14      // If we don't set this, setting baseUrl/paths makes compiling very noisy for no reason.
    15      "suppressTsconfigOverrideWarnings": true
    16    },
    17    // Bazel doesn't need these, but it prevents other tooling (e.g. VS Code)
    18    // from being confused.
    19    "exclude": [
    20      "bazel-bin",
    21      "bazel-out",
    22      "bazel-test-infra",
    23      "node_modules"
    24    ]
    25  }