microsoft/TypeAgent

Public

mirrored from https://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
5315bc61ecf0db6bbbeabf396dc02e757ba008ff

Branches

Tags

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

Clone

HTTPS

Download ZIP

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}
18