This repository has been archived by the owner on Dec 31, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 97
/
tsconfig.json
62 lines (62 loc) · 1.87 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"moduleResolution": "node",
"checkJs": false,
"noImplicitThis": true,
"noUnusedParameters": true,
"traceResolution": false,
"allowUnreachableCode": false,
"outDir": "dist",
"declaration": false,
"importHelpers": true,
"inlineSources": true,
"newLine": "lf",
"noEmitHelpers": true,
"removeComments": false,
"sourceMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"noEmit": false,
"useUnknownInCatchVariables": false,
"lib": ["ESNext", "dom", "dom.iterable", "ES2020.BigInt"],
"strict": true,
"noImplicitAny": false,
"strictNullChecks": true,
"alwaysStrict": true,
"allowJs": true,
"isolatedModules": true,
"noUnusedLocals": true,
"noImplicitOverride": false,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"useDefineForClassFields": true,
"jsx": "preserve",
"skipLibCheck": true,
"typeRoots": ["./node_modules/@types", "./typings"],
"baseUrl": ".",
"paths": {
"structures/*": ["./src/structures/*"],
"handlers/*": ["./src/handlers/*"],
"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/*"],
"assets/*": ["./src/assets/*"]
},
"incremental": true,
"tsBuildInfoFile": ".tsbuildinfo"
},
"exclude": ["node_modules", ".next", ".vscode", ".github", "**/*.md", "public/*.js"],
"include": ["typings/*.d.ts", "**/*.ts", "**/*.tsx", "./*.js"],
"ts-node": {
"swc": true
}
}