1.0.2 • Published 2 years ago

@honeycombsteam/tsconfig v1.0.2

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

tsconfig

Default tsconfig.json for all Node.js projects in Honeycombs Team.

Usage

First things first, install @honeycombsteam/tsconfig package:

npm install @honeycombsteam/tsconfig --save-dev
# or if you prefer yarn
yarn install @honeycombsteam/tsconfig --save-dev

Then, include this default configuration into your's project configuration:

{
    "extends": "@honeycombsteam/tsconfig",
    "compilerOptions": {
        "baseUrl": ".",
        "rootDir": "./src/",
        "outDir": "./dist/"
    },
    "include": ["./src/**/*"],
    "exclude": ["./node_modules/**/*"]
}