-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
36 lines (36 loc) · 926 Bytes
/
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
34
35
36
{
"version": "2.4.2",
"compilerOptions": {
"lib": ["ES2021"],
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "CommonJS",
"moduleResolution": "Node",
"noEmitOnError": false,
"noImplicitAny": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"outDir": "./dist",
"removeComments": false,
"sourceMap": false,
"strict": true,
"target": "ES2021",
"skipLibCheck": false,
"resolveJsonModule": true,
"baseUrl": "./",
"paths": {
"@utils/*": ["src/utils/*"],
"@images/*": ["src/images/*"],
"@models/*": ["src/models/*"],
"@assets/*": ["src/assets/*"],
"@lang/*": ["src/lang/*"],
"@rootDir": ["./"]
}
},
"ts-node": {
"require": ["tsconfig-paths/register"]
},
"include": ["src", "pm2.config.ts"],
"exclude": ["node_modules", "cli-config.ts"]
}