microsoft/TypeAgent

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
fc4e476aba46c530ab38ef7c88bded152f13971a

Branches

Tags

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

Clone

HTTPS

Download ZIP

ts/packages/cli/tsconfig.json

18lines · 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 "noUnusedLocals": false,
10 },
11 "include": [],
12 "references": [
13 { "path": "./src" }
14 ],
15 "ts-node": {
16 "esm": true
17 }
18}
19