Files
DefinitelyTyped-tools/packages/definitions-parser/tsconfig.json
Andrew Branch ed2a4f3350 Use real resolution for used file detection (#615)
* Use real TypeScript resolution for determining used files

* getTypingInfo needs the whole DT FS

* Fix a few things not showing up in tests

* Disable superfluous OTHER_FILES error

* Replace internal API

* Bring back error for relatively referencing other packages

* Fix `getLocallyInstalledDefinitelyTyped`

* PR suggestions
2023-02-27 13:57:22 -08:00

14 lines
247 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "dist",
"rootDir": "src",
"types": ["node"],
},
"include": ["src"],
"references": [
{ "path": "../utils" },
{ "path": "../header-parser" }
]
}