-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtsconfig.json
32 lines (32 loc) · 909 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
{
"extends": [
"@sapphire/ts-config",
"@sapphire/ts-config/extra-strict",
"@sapphire/ts-config/decorators",
"@sapphire/ts-config/verbatim"
],
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"removeComments": true,
"declaration": false,
"declarationMap": false,
"rootDir": "./src",
"outDir": "./dist",
"tsBuildInfoFile": "./dist/.tsbuildinfo",
"paths": {
"#internals/*": ["./src/lib/internals/*.ts"],
"#hooks/*": ["./src/lib/utils/hooks/*.ts"],
"#setup": ["./src/lib/setup.ts"],
"#customIds/*": ["./src/lib/structures/customIds/*.ts"],
"#structures/*": ["./src/lib/structures/*.ts"],
"#types/*": ["./src/lib/types/*.ts"],
"#utils/*": ["./src/lib/utils/*.ts"],
"#workers/*": ["./src/lib/workers/*.ts"]
},
// TODO: remove once 5.5.2 stabilizes or something
"skipLibCheck": true
},
"include": ["src"]
}