This is the shared TypeScript configuration for my projects.
Install the package using NPM:
yarn add --dev @samuelmeuli/tsconfig
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"
}
}