TypeScript/src/testRunner/tsconfig.json
Nathan Shively-Sanders 5bb204e321
Remove webServer (#51699)
* Remove webServer

First draft; I may move some things around to be more readable.

* Refactor moved code

1. Move StartSessionOptions to common next to where it's first used.
2. Inline single-use BaseLogger base class into its only child class,
Logger.
3. Start using direct imports, eg `import {} from './common'`. I hope
this is OK?!

* Fix lint

* move imports back to namespace import

* hereby tsserver: remove exportIsTsObject
2022-12-06 08:41:01 -08:00

21 lines
548 B
JSON

{
"extends": "../tsconfig-base",
"compilerOptions": {
"types": [
"node", "mocha", "chai"
]
},
"references": [
{ "path": "../compiler" },
{ "path": "../executeCommandLine" },
{ "path": "../services" },
{ "path": "../jsTyping" },
{ "path": "../server" },
{ "path": "../typingsInstallerCore" },
{ "path": "../deprecatedCompat" },
{ "path": "../harness" },
{ "path": "../loggedIO" }
],
"include": ["**/*"]
}