0.0.1-alpha.0 • Published 2 years ago

@misterbridge/ts-config v0.0.1-alpha.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

TypeScript config, mrbridge's style

This package provides mrbridge's TypeScript config.

  • .tsconfig as an importable/extensible file

Installing

  1. In your project folder, run:

    npm i -D @misterbridge/ts-config
    npx install-peerdeps --dev @misterbridge/ts-config

    You will see several dependencies were installed.

  2. Create (or update) a .tsconfig file with the following content:

    {
        "extends": "@misterbridge/tsconfig-config/tsconfig.json",
        "compilerOptions": {},
        "include": ["./src"]
    }

    You can also set/override any compilerOptions you want, as well as change the include or any other entry.