-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
executable file
·44 lines (44 loc) · 1.24 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
{
"compileOnSave": false,
"ts-node": {
"require": ["tsconfig-paths/register"],
"transpileOnly": true,
"compilerOptions": {
"module": "NodeNext",
"target": "ESNext"
},
"esm": true
},
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noErrorTruncation": true,
"importHelpers": true,
"target": "esnext",
"module": "NodeNext",
"lib": ["es2021", "DOM"],
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"skipDefaultLibCheck": true,
"allowJs": true,
"esModuleInterop": true,
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"paths": {
"@/types": ["libs/types/src/index.ts"],
"@centertrialerror/email": ["apps/email"],
"@centertrialerror/frontend": ["apps/frontend"],
"@centertrialerror/strapi": ["apps/strapi"],
"@centertrialerror/workspace-plugin": ["tools/workspace-plugin/src/index.ts"],
"@trialanderror/strapi": ["libs/strapi-client/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}