@atlantjs.dev/tsconfig-core
v1.0.6
Published
This configuration enforces that typescript will be compiled using the strict option.
Readme
tsconfig.json for Node projects
This configuration enforces that typescript will be compiled using the strict option.
It doesn't configure outDir, baseDir or sourcemaps.
Setup
Install the library and its dependencies:
npm install @atlantjs.dev/tsconfig-core --save-dev
yarn add -D @atlantjs.dev/tsconfig-coreThis setup also uses tslib to reduce the compiled code size.
You must install it on your project as a normal dependency:
yarn add tslibAfter installing the dependencies, add this to your tsconfig.json:
{
"extends": "@atlantjs.dev/tsconfig-core/tsconfig.json"
...
}