blob: 6d3b09b3e821d59c62c41a43a4a32be24314c564 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{
"compilerOptions": {
"target": "ESNext",
"moduleResolution": "node",
"module": "ESNext",
"strict": true,
"noEmit": true,
"declaration": true,
"stripInternal": true,
"verbatimModuleSyntax": 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/apidocs/temp"
]
}
|