microsoft/TypeAgent
Publicmirrored fromhttps://github.com/microsoft/TypeAgentAvailable
ts/packages/cli/tsconfig.json
17lines · modecode
| 1 | { |
| 2 | "extends": "../../tsconfig.base.json", |
| 3 | "compilerOptions": { |
| 4 | "composite": true, |
| 5 | |
| 6 | // These settings need to match src/tsconfig.json and needed here for oclif dev mode to work for ts-node to work |
| 7 | "rootDir": "./src", |
| 8 | "outDir": "./dist", |
| 9 | }, |
| 10 | "include": [], |
| 11 | "references": [ |
| 12 | { "path": "./src" } |
| 13 | ], |
| 14 | "ts-node": { |
| 15 | "esm": true |
| 16 | } |
| 17 | } |