-
Notifications
You must be signed in to change notification settings - Fork 4
/
tsconfig.json
44 lines (44 loc) · 1.54 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
{
"compilerOptions": {
"target": "ESNext",
"lib": [
"ESNext"
],
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"rootDir": "./src",
"baseUrl": "./",
"outDir": "./dist",
"removeComments": true,
"noEmitOnError": true,
"allowSyntheticDefaultImports": true,
"noImplicitOverride": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"paths": {
"#stelle/client": ["./src/structures/client/Stelle.ts"],
"#stelle/types": ["./src/structures/utils/types/index.ts"],
"#stelle/classes": ["./src/structures/utils/classes/index.ts"],
"#stelle/middlwares": ["./src/middlewares/index.ts"],
"#stelle/errors": ["./src/structures/utils/Errors.ts"],
"#stelle/decorators": ["./src/structures/utils/Decorators.ts"],
"#stelle/listeners": ["./src/structures/listeners/index.ts"],
"#stelle/index": ["./src/index.ts"],
"#stelle/data/*": ["./src/structures/utils/data/*"],
"#stelle/utils/*": ["./src/structures/utils/*"],
}
},
"include": ["./src/**/*"],
"exclude": [
"node_modules",
"dist"
]
}