@tommy-mitchell/tsconfig
v2.1.0
Published
My personal TypeScript config.
Downloads
9
Readme
@tommy-mitchell/tsconfig
Personal TypeScript config.
Install
npm install --save-dev @tommy-mitchell/tsconfig
yarn add --dev @tommy-mitchell/tsconfig
Usage
{
"extends": "@tommy-mitchell/tsconfig",
"compilerOptions": {
"outDir": "dist",
},
}
If using with a bundler, set the following options to prevent type resolution issues:
{
"compilerOptions": {
"declaration": false,
"noEmit": false,
},
}