-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
29 lines (26 loc) · 991 Bytes
/
tsconfig.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
{
"extends": "../../../tsconfig.base-node14.json",
"compilerOptions": {
/* Visit https://aka.ms/tsconfig.json to read more about this file */
/* Projects */
// In TypeScript 4.7.3, if the `incremental` option is `true`, the 'import.meta' meta-property is not allowed.
"incremental": false,
// If the `incremental` option is disabled, the `composite` option must also be disabled
"composite": false,
/* Modules */
// The 'import.meta' meta-property is only allowed when the `module` option is `es2020`, `es2022`, `esnext`, `system`, `node16`, or `nodenext`.
"module": "Node16",
// When the `composite` option is `true` and the `rootDir` option is undefined,
// files will not be created directly under the `outDir`
"rootDir": "./",
"baseUrl": "./",
"paths": {
"*": ["./types.node_modules/*.d.ts"]
},
"types": ["node"],
/* Emit */
"declarationMap": false,
"noEmit": true,
"inlineSources": true
}
}