Files
gerrit/polygerrit-ui/app/tsconfig_bazel.json
Ole Rehmsen acaf47585a Add a new folder for API types
This is to ensure apps embedding gr-diff and plugins have a stable API
and the Gerrit team takes special care and applies versioning when
changing these.

Change-Id: I46a6d0ecbe620048c9a73c29a27011a8dbc8693e
2021-01-22 13:51:11 +01:00

31 lines
721 B
JSON

{
"extends": "./tsconfig.json",
"compilerOptions": {
"typeRoots": [
"../../external/ui_npm/node_modules/@types",
"../../external/ui_dev_npm/node_modules/@types"
]
},
"include": [
// Items below must be in sync with the src_dirs list in the BUILD file
// Also items must be in sync with tsconfig.json, tsconfig_bazel_test.json
// (include and exclude arrays are overriden when extends)
"api/**/*",
"constants/**/*",
"elements/**/*",
"embed/**/*",
"gr-diff/**/*",
"mixins/**/*",
"samples/**/*",
"scripts/**/*",
"services/**/*",
"styles/**/*",
"types/**/*",
"utils/**/*"
],
"exclude": [
"**/*_test.ts",
"**/*_test.js"
]
}