-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.json
33 lines (33 loc) · 857 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
{
"compilerOptions": {
"target": "ES6",
"lib": ["es6"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"module": "commonjs",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"incremental": true,
"rootDir": "src",
"baseUrl": "src",
"outDir": "build",
"noImplicitAny": true,
"paths": {
"@/*": ["*"],
"@commands/*": ["commands/*"],
"@events/*": ["events/*"],
"@middlewares/*": ["middlewares/*"],
"@snoopbot/*": ["snoopbot/*"],
"@commands": ["commands/index"],
"@events": ["events/index"],
"@middlewares": ["middlewares/index"],
"@snoopbot": ["snoopbot/index"],
}
},
"include": ["**/*.ts"],
"exclude": ["node_modules"]
}