forked from mongodb/js-bson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
37 lines (37 loc) · 893 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
30
31
32
33
34
35
36
37
{
"compilerOptions": {
"allowJs": false,
"checkJs": false,
"strict": true,
"alwaysStrict": true,
"target": "es2021",
"module": "commonjs",
"moduleResolution": "node",
"skipLibCheck": true,
"lib": [
"es2021",
"ES2022.Error"
],
"outDir": "lib",
"importHelpers": false,
"noEmitHelpers": false,
"noEmitOnError": true,
"emitDeclarationOnly": true,
// Generate separate source maps files with sourceContent included
"sourceMap": true,
"inlineSourceMap": false,
"inlineSources": false,
// API-extractor makes use of the declarations, npm script should be cleaning these up
"declaration": true,
"declarationMap": true,
"types": [],
"isolatedModules": true
},
"ts-node": {
"transpileOnly": true,
"compiler": "typescript-cached-transpile",
},
"include": [
"src/**/*"
]
}