{ "$schema": "http://json.schemastore.org/tsconfig", "extends": "../../tsconfig.base.json", "compilerOptions": { "module": "CommonJS", "moduleResolution": "Node", "baseUrl": ".", "paths": { "~/*": ["./src/*"] }, /* TODO: remove below flags for strict checking */ "strict": false, "strictNullChecks": true, "strictBindCallApply": true, "noImplicitAny": false, "noImplicitOverride": true, // Note: To transform paths for both the output .js and .d.ts files, you need both of the below entries "plugins": [ // Transform paths in output .js files { "transform": "typescript-transform-paths" }, // Transform paths in output .d.ts files (Include this line if you output declarations files) { "transform": "typescript-transform-paths", "afterDeclarations": true } ] }, "include": [ "src" ], "exclude": [ "node_modules", "config", "dist", "src/public/**", "**/*.test.ts" ], "ts-node": { "transpileOnly": true, "swc": true } }