-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
19 lines (19 loc) · 873 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"compilerOptions": {
"target": "es2022",
"module": "node16",
"allowJs": true /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */,
"outDir": "dist" /* Allow 'import x from y' when a module doesn't have a default export. */,
"esModuleInterop": true /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */,
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,
"strict": false /* Enable all strict type-checking options. */,
"moduleResolution": "Node16",
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
"paths": {
"logger": ["./src/logger.ts"],
"purrperms": ["./src/perms.ts"],
"database": ["./src/database/prisma.ts"]
}
},
"include": ["src/**/*"]
}