-
Notifications
You must be signed in to change notification settings - Fork 9
/
tsconfig.json
36 lines (36 loc) · 1.14 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
{
"ts-node": {
"require": ["tsconfig-paths/register"]
},
"compilerOptions": {
"allowJs": true,
"baseUrl": ".",
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"lib": ["es2020"],
"module": "CommonJS",
"moduleResolution": "node",
"outDir": "./build",
"typeRoots": ["node_modules/@types", "src/@types"],
"paths": {
"@discord-point-bot/utils": ["src/utils/index.ts"],
"@discord-point-bot/models": ["src/models/index.ts"],
"@discord-point-bot/components": ["src/components/index.ts"],
"@discord-point-bot/events": ["src/events/index.ts"],
"@discord-point-bot/slash-commands": ["src/slash-commands/index.ts"],
"@discord-point-bot/constants": ["src/constants/index.ts"],
"@translation": ["src/translations/translation.ts"],
"@config": ["src/config/config.ts"]
},
"resolveJsonModule": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"sourceMap": true,
"incremental": true,
"target": "es2020"
},
"include": ["src"]
}