-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (26 loc) · 949 Bytes
/
tsconfig.json
File metadata and controls
29 lines (26 loc) · 949 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
25
26
27
28
29
{
"compilerOptions": {
/* Language and Environment */
"target": "ESNext" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
/* Modules */
"module": "ESNext" /* Specify what module code is generated. */,
"lib": ["ESNext", "ES2023", "ES2022"],
"moduleResolution": "Node",
"allowImportingTsExtensions": true,
"allowJs": true,
"rootDir": "/",
"baseUrl": "/",
"importHelpers": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"types": ["node", "discord.js"],
"allowSyntheticDefaultImports": true,
/* Type Checking */
"strict": true /* Enable all strict type-checking options. */,
"noImplicitAny": true,
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
/* Prevent Output */
"noEmit": true /* Do not emit outputs. */
},
"exclude": ["eslint.config.mjs", "node_modules", "dist"]
}