-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtsconfig.json
More file actions
29 lines (27 loc) · 888 Bytes
/
tsconfig.json
File metadata and controls
29 lines (27 loc) · 888 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
{
"exclude": ["@fullstacksjs/tsconfig/esm"],
"compilerOptions": {
"target": "esnext",
"module": "nodenext",
"moduleResolution": "nodenext",
"allowImportingTsExtensions": true,
// Extra strictness / type-safety
"strict": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"strictNullChecks": true,
"allowArbitraryExtensions": true,
"noUncheckedSideEffectImports": true,
"noEmit": true,
"skipLibCheck": true,
// ISSUE: ESLint plugin does not work subpath imports https://github.com/un-ts/eslint-plugin-import-x/issues/437
"paths": {
"#config": ["./src/config/index.ts"],
"#db": ["./src/db/index.ts"],
"#bot": ["./src/bot/bot.ts"],
"#github": ["./src/lib/github/index.ts"],
"#webhooks": ["./src/lib/github/webhooks/index.ts"],
"#telegram": ["./src/lib/index.ts"]
}
}
}