-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
49 lines (47 loc) · 1.49 KB
/
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
41
42
43
44
45
46
47
48
49
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"allowSyntheticDefaultImports": true,
"verbatimModuleSyntax": true,
// Source maps
"sourceMap": true,
"inlineSources": true,
// Set `sourceRoot` to "/" to strip the build path prefix
// from generated source code references.
// This improves issue grouping in Sentry.
"sourceRoot": "/",
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"esModuleInterop": true,
"rootDir": "src",
"baseUrl": ".",
"outDir": "dist",
"strict": true,
"noImplicitAny": true,
"alwaysStrict": true,
"strictNullChecks": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"moduleResolution": "NodeNext",
"skipLibCheck": true,
"paths": {
"#bot/*": ["src/bot/*.js"],
"#handlers": ["src/bot/handlers/index.js"],
"#handlers/*": ["src/bot/handlers/*.js"],
"#src/*": ["src/*.js"],
"#commands/*": ["src/bot/commands/*.js"],
"#root/*": ["./*.js"],
"#schemas/*": ["src/bot/database/schemas/*.js"],
"#structures/*": ["src/bot/structures/*.js"],
"#structures": ["src/bot/structures/index.js"],
"#libs/*": ["src/bot/libs/*.js"],
"#libs": ["src/bot/libs/index.js"],
"#api/*": ["src/api/*.js"],
"#utils": ["src/bot/utils/index.js"]
}
},
"include": ["src", "dashboard"],
"exclude": ["node_modules"]
}