| 123456789101112131415161718192021222324252627282930313233 |
- {
- "$schema": "http://json.schemastore.org/tsconfig",
- "extends": "../../tsconfig.base.json",
- "compilerOptions": {
- "module": "CommonJS",
- "baseUrl": ".",
- "paths": {
- "~/*": ["./src/*"]
- },
- /* TODO: remove below flags for strict checking */
- "strict": false,
- "strictNullChecks": true,
- "strictBindCallApply": true,
- "noImplicitAny": false,
- "noImplicitOverride": true
- },
- "include": [
- "src"
- ],
- "exclude": [
- "node_modules",
- "config",
- "dist",
- "src/public/**",
- "**/*.test.ts"
- ],
- "ts-node": {
- "transpileOnly": true,
- "swc": true
- }
- }
|