-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
39 lines (39 loc) · 906 Bytes
/
tsconfig.json
File metadata and controls
39 lines (39 loc) · 906 Bytes
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
{
"extends": "./tsconfig.paths.json",
"compilerOptions": {
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"declaration": true,
"lib": ["ESNext", "DOM"],
"moduleResolution": "node",
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": true,
"sourceMap": true,
"resolveJsonModule": true,
"target": "ES2020",
"module": "commonjs",
"skipLibCheck": true,
"typeRoots": ["node_modules/@types"],
"outDir": "lib",
"baseUrl": ".",
"paths": {
"@libs/*": ["src/libs/*"],
"@utils/*": ["src/utils/*"],
"@customTypes/*": ["src/customTypes/*"],
"@models/*": ["src/libs/models/*"],
"@services/*": ["src/libs/services/*"]
}
},
"include": ["src/**/*.ts"],
"exclude": [
"node_modules/**/*",
".serverless/**/*",
".webpack/**/*",
"_warmup/**/*",
".vscode/**/*"
],
"ts-node": {
"require": ["tsconfig-paths/register"]
}
}