-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
39 lines (34 loc) · 942 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
39
{
// To update the compilation target, install a different version of @tsconfig/node... and reference it here
// https://github.com/tsconfig/bases#node-12-tsconfigjson
"extends": "@tsconfig/node12/tsconfig.json",
"compilerOptions": {
// Required for monorepos, but don't compile anything broken
"composite": true,
"declaration": true,
"declarationMap": true,
"noEmitOnError": true,
// Control what goes into the output files
"removeComments": false,
"stripInternal": true,
// Avoid runtime imports that are unnecessary
"importsNotUsedAsValues": "error",
// Required for TS debugging
"sourceMap": true,
"inlineSourceMap": false,
// watch=true breaks CI build steps
"watch": false,
"pretty": true,
"types": ["node"],
"noErrorTruncation": true
},
"include": [
"packages/**/src/**/*.ts",
"test/**/*.ts"
],
"exclude": [
"**/build/**",
"node_modules/**",
"packages/**/node_modules"
]
}