1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
"compilerOptions": {
"target": "ESNext",
"moduleResolution": "node",
"module": "ESNext",
"strict": true,
"noEmit": true,
"declaration": true,
"stripInternal": true,
// These are configs specifically for !build and have to be reverted in the tsconfig.build.json
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
},
"exclude": [
"node_modules",
"dist",
// required for the typedoc related tests on macOS #2280
"test/scripts/apidoc/temp",
],
}
|