1 | {
|
2 | "$schema": "https://json.schemastore.org/tsconfig",
|
3 | "compilerOptions": {
|
4 | "emitDecoratorMetadata": true,
|
5 | "experimentalDecorators": true,
|
6 | "resolveJsonModule": true,
|
7 | "skipLibCheck": true,
|
8 | "strict": true,
|
9 |
|
10 | // FIXME(bajtos) LB4 is not compatible with this setting yet
|
11 | "strictPropertyInitialization": false,
|
12 |
|
13 | // https://devblogs.microsoft.com/typescript/announcing-typescript-4-4/#use-unknown-catch-variables
|
14 | "useUnknownInCatchVariables": false,
|
15 |
|
16 | "incremental": true,
|
17 |
|
18 | "lib": ["es2020"],
|
19 | "module": "commonjs",
|
20 | "esModuleInterop": true,
|
21 | "moduleResolution": "node",
|
22 | "target": "es2018",
|
23 | "sourceMap": true,
|
24 | "declaration": true,
|
25 | "importHelpers": true
|
26 | }
|
27 | }
|