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