| 12345678910111213141516171819 |
- {
- "$schema": "http://json.schemastore.org/tsconfig",
- "extends": "./tsconfig.json",
- "compilerOptions": {
- "module": "ESNext",
- "strict": false,
- "noFallthroughCasesInSwitch": true,
- "incremental": true,
- "baseUrl": ".",
- "paths": {
- "~/*": ["./src/*"],
- "^/*": ["./*"],
- "debug": ["./src/server/utils/logger/alias-for-debug"]
- }
- }
- }
|