-
Notifications
You must be signed in to change notification settings - Fork 20
/
tsconfig.ci.json
33 lines (33 loc) · 1.04 KB
/
tsconfig.ci.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
// this file is used for typechecking in the CI context
// as opposed to the `tsconfig.json` file used for typechecking within IDEs
// Every file passing typechecking should be added in the `include` array below
"include": [
"src/lib/**/*.js",
"src/components/**/*.js",
"src/controllers/*.js",
"src/templates/*.js",
"src/translations/**/*.js",
"tasks/typechecking-stats.js"
],
"exclude": [
"src/lib/leaflet",
"src/lib/pricing.js",
"src/lib/product.js",
"src/controllers/*.stories.js",
"src/components/**/*.test.js",
"src/components/**/*.stories.js",
"src/components/cc-grafana-info",
"src/components/cc-logs/*",
"src/components/cc-logs-*/*",
"src/components/cc-pricing-*"
],
"extends": "./tsconfig.json",
"compilerOptions": {
// FIXME:
// This means our `d.ts` files are not checked in CI context
// This needs to be set to `true` at least until we can upgrade TypeScript
// see https://github.com/CleverCloud/clever-components/issues/972
"skipLibCheck": true
}
}