microsoft/TypeAgent

Public

mirrored fromhttps://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
1adc19e53b9dfd93f84ff36cd1ee7fdfdefe1548

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

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