-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.base.json
46 lines (46 loc) · 1.76 KB
/
tsconfig.base.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
40
41
42
43
44
45
46
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"esModuleInterop": true,
"target": "esnext",
"module": "esnext",
"lib": ["esnext", "dom"],
"allowUnreachableCode": false,
"alwaysStrict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUncheckedIndexedAccess": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"strict": true,
"baseUrl": ".",
"paths": {
"@homeofthings/hot-server": ["packages/node/@homeofthings/hot-server/src/index.ts"],
"@homeofthings/nestjs-config": ["packages/node/@homeofthings/nestjs-config/src/index.ts"],
"@homeofthings/nestjs-logger": ["packages/node/@homeofthings/nestjs-logger/src/index.ts"],
"@homeofthings/nestjs-sqlite3": ["packages/node/@homeofthings/nestjs-sqlite3/src/index.ts"],
"@homeofthings/nestjs-utils": ["packages/node/@homeofthings/nestjs-utils/src/index.ts"],
"@homeofthings/node-sys": ["packages/node/@homeofthings/node-sys/src/index.ts"],
"@homeofthings/node-utils": ["packages/node/@homeofthings/node-utils/src/index.ts"],
"asyncctx": ["packages/node/asyncctx/src/index.ts"],
"jsonpointerx": ["packages/js/jsonpointerx/src/index.ts"],
"sqlite3orm": ["packages/node/sqlite3orm/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}