Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Latest commit

 

History

History
23 lines (17 loc) · 305 Bytes

no-outside-dependencies.md

File metadata and controls

23 lines (17 loc) · 305 Bytes

no-outside-dependencies

Don't import from DefinitelyTyped/node_modules.

Bad:

import * as x from "x";
// where 'x' is defined only in `DefinitelyTyped/node_modules`

Good:

Add a package.json:

{
    "private": true,
    "dependencies": {
        "x": "^1.2.3"
    }
}