forked from casperiv0/ghostybot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
44 lines (43 loc) · 1.38 KB
/
tsconfig.json
File metadata and controls
44 lines (43 loc) · 1.38 KB
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": "es2020",
"module": "commonjs",
"jsx": "preserve",
"removeComments": true,
"strict": true,
"noImplicitAny": false,
"strictNullChecks": true,
"alwaysStrict": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"lib": ["dom", "dom.iterable", "esnext", "ES2020.BigInt"],
"allowJs": true,
"noEmit": false,
"isolatedModules": true,
"noUnusedLocals": true,
"typeRoots": ["./node_modules/@types", "./typings"],
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"baseUrl": ".",
"paths": {
"@/*": ["./*"],
"structures/*": ["./src/structures/*"],
"handlers/*": ["./src/handlers/*"],
"data/*": ["./src/data/*"],
"models/*": ["./src/models/*"],
"types/*": ["./src/interfaces/*"],
"@utils/*": ["./src/utils/*"],
"@components/*": ["./src/dashboard/components/*"],
"@commands/*": ["./src/commands/*"],
"@scripts/*": ["./src/scripts/*"],
"@locales/*": ["./src/locales/*"],
"@config/*": ["./src/config/*"]
},
"moduleResolution": "node",
"skipLibCheck": true
},
"exclude": ["node_modules", ".next", ".vscode", ".github", "**/*.md", "public/*.js"],
"include": ["typings/next-env.d.ts", "typings/*.d.ts", "**/*.ts", "**/*.tsx"]
}