-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
tsconfig.json
33 lines (33 loc) · 1.01 KB
/
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
{
"extends": "@tsconfig/node18/tsconfig.json",
"compilerOptions": {
// Pass js files through to the build dir
// but don't complain about errors
"allowJs": true,
"checkJs": false,
// Monorepo setup with project references
"composite": true,
"declaration": true, // generate .d.ts files
"declarationMap": true, // generate .map files for .d.ts files
"sourceMap": true, // generate .map files for .js files
"inlineSourceMap": false, // Alternatively inline the source maps
// Don't emit anything by default. This will be turned on in the subprojects
"noEmit": true,
// Avoid TS errors in external dependencies
"skipLibCheck": true,
// Enable syntax help for importing JSON files
"resolveJsonModule": true,
"useUnknownInCatchVariables": false,
"pretty": true
},
"include": [
"*.config.mjs",
"packages/**/*.js",
"packages/**/*.ts",
"packages/controller/io-package.json",
"schemas/**/*.ts"
],
"exclude": [
"packages/**/build"
]
}