forked from mongodb/js-bson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
38 lines (38 loc) · 959 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
38
{
"compilerOptions": {
"allowJs": false,
"checkJs": false,
"strict": true,
"alwaysStrict": true,
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"lib": [
"ES2017",
"ES2020.BigInt",
"ES2017.TypedArrays"
],
"outDir": "lib",
// We don't make use of tslib helpers
"importHelpers": false,
"noEmitHelpers": false,
"noEmitOnError": true,
// make use of import type where applicable
"importsNotUsedAsValues": "error",
// 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": []
},
"ts-node": {
"transpileOnly": true,
"compiler": "typescript-cached-transpile"
},
"include": [
"src/**/*"
]
}