-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
40 lines (37 loc) · 912 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
37
38
39
40
{
"compilerOptions": {
"sourceMap": true,
"outDir": "dist",
"rootDir": ".",
"removeComments": true,
"target": "ES5",
// Strict Type-Checking Options
"strict": true,
"noImplicitAny": false,
// Module Resolution Options
"moduleResolution": "node",
"baseUrl": ".",
"esModuleInterop": true,
"allowJs": true,
// Advanced Options
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"paths": {
"@config": ["./src/config"],
"@src/*": ["./src/*"],
"@helpers": ["./src/helpers"],
"@commands": ["./src/commands"],
"@types": ["./src/types"],
"@services": ["./src/services"],
"@database": ["./src/database"],
}
},
"include": ["./src"],
"exclude": ["./node_modules"],
"plugins": [
{
"transform": "@zerollup/ts-transform-paths",
}
],
}