generated from Mara-Li/ts-discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
49 lines (49 loc) · 1.37 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
{
"ts-node": {
"require": ["tsconfig-paths/register"],
"esm": true,
"transpileOnly": true,
"experimentalSpecifierResolution": "node"
},
"tsc-alias": {
"resolveFullPaths": true
},
"compilerOptions": {
"target": "ESNext",
"module": "esnext",
"lib": ["ESNext"],
"rootDir": "./",
"outDir": "./dist/",
"strict": true,
"moduleResolution": "node",
"importHelpers": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"inlineSourceMap": true,
"allowJs": true,
"checkJs": false,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"removeComments": true,
"typeRoots": ["packages/@types", "node_modules/@types"],
"sourceMap": false,
"composite": false,
"baseUrl": ".",
"declaration": false,
"declarationMap": false,
"paths": {
"client": ["packages/bot/src/client.js"],
"messages": ["packages/bot/src/messages/index.js"],
"utils": ["packages/bot/src/utils/index.js"],
"database": ["packages/bot/src/database/index.js"],
"features": ["packages/bot/src/features/index.js"],
"commands": ["packages/bot/src/commands/index.js"],
"event": ["packages/bot/src/events/index.js"],
"locales": ["packages/bot/src/locales.js"]
}
},
"exclude": ["node_modules", "dist"],
"include": ["packages/**/*.ts", "packages/**/*.d.ts", "package.json"]
}