@samuelmeuli/tsconfig
v1.0.0
Published
My TypeScript configuration
Downloads
706
Maintainers
Readme
tsconfig
This is the shared TypeScript configuration for my projects.
Install
Install the package using NPM:
yarn add --dev @samuelmeuli/tsconfig
Usage
Create the tsconfig.json
file in your project root:
{
"extends": "@samuelmeuli/tsconfig"
}
The default configuration can be overridden or extended:
{
"extends": "@samuelmeuli/tsconfig",
"compilerOptions": {
"module": "ES6"
}
}