microsoft/TypeAgent
Publicmirrored fromhttps://github.com/microsoft/TypeAgentAvailable
ts/examples/cacheRESTEndpoint/tsconfig.json
22lines · modecode
| 1 | { |
| 2 | "extends": "../../tsconfig.base.json", |
| 3 | "compilerOptions": { |
| 4 | "composite": false, |
| 5 | "rootDir": ".", |
| 6 | "outDir": "../../dist/", |
| 7 | "declaration": false, |
| 8 | "declarationMap": false, |
| 9 | "moduleResolution": "bundler", |
| 10 | "module": "ESNext", |
| 11 | "lib": ["DOM"], |
| 12 | "exactOptionalPropertyTypes": false, |
| 13 | "noImplicitAny": false, |
| 14 | "strictNullChecks": false, |
| 15 | "sourceMap": true |
| 16 | }, |
| 17 | "include": [], |
| 18 | "references": [{ "path": "./src" }], |
| 19 | "ts-node": { |
| 20 | "esm": true |
| 21 | } |
| 22 | } |
| 23 | |