-
-
Notifications
You must be signed in to change notification settings - Fork 398
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (24 loc) · 848 Bytes
/
tsconfig.json
File metadata and controls
24 lines (24 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"compilerOptions": {
"noImplicitAny": true,
"noImplicitThis": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"strictNullChecks": true,
"module": "ESNext",
"target": "ESNext",
"moduleResolution": "bundler",
"rootDir": ".",
"verbatimModuleSyntax": true,
"types": [], // explicitly exclude node/bun/react types from global scope
"paths": {
"@betterdiscord": ["./src/types/betterdiscord"],
"@betterdiscord/*": ["./src/types/betterdiscord/*"],
"@discord": ["./src/types/discord"],
"@discord/*": ["./src/types/discord/*"],
"@common/*": ["./src/common/*"]
}
},
"include": ["src/*", "src/**/*"]
}