-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
36 lines (36 loc) · 1.31 KB
/
tsconfig.base.json
File metadata and controls
36 lines (36 loc) · 1.31 KB
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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"pretty": true,
"sourceMap": true,
"declaration": false,
"moduleResolution": "node10",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES2020",
"module": "esnext",
"strict": true,
"lib": ["ESNext", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@michess/api-router": ["libs/api-router/src/index.ts"],
"@michess/api-schema": ["libs/api-schema/src/index.ts"],
"@michess/api-service": ["libs/api-service/src/index.ts"],
"@michess/be-utils": ["libs/be-utils/src/index.ts"],
"@michess/common-utils": ["libs/common-utils/src/index.ts"],
"@michess/core-board": ["libs/core-board/src/index.ts"],
"@michess/core-game": ["libs/core-game/src/index.ts"],
"@michess/infra-db": ["libs/infra-db/src/index.ts"],
"@michess/infra-email": ["libs/infra-email/src/index.ts"],
"@michess/react-chessboard": ["libs/react-chessboard/src/index.ts"],
"@michess/react-dnd": ["libs/react-dnd/src/index.ts"],
"@michess/react-emails": ["libs/react-emails/src/index.ts"],
"@michess/core-rating": ["libs/core-rating/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}