Files
protocol/packages/tsconfig/README.md
2023-02-21 21:55:45 -07:00

648 B

tsconfig

This workspace contains a base TypeScript configuration file which other workspaces can extend.

Usage

In your workspace's package.json, add this package as a dependency:

{
    "dependencies": {
        "tsconfig": "*"
    }
}

In the workspace root tsconfig.json, extend the base configuration:

{
    "extends": "tsconfig/base.json",

    // Modify to suit your needs
    "include": ["next-env.d.ts", "special-folder/*.tsx?"]
}

Resources