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