@gimjb/tsconfig
v0.0.3
Published
A comprehensive TypeScript configuration file for various project types.
Downloads
10
Readme
@gimjb/tsconfig
A comprehensive TypeScript configuration for various project types.
Usage
To use this TypeScript configuration in your project, extend it in your tsconfig.json file:
// tsconfig.json
{
"extends": "@gimjb/tsconfig/node" // or "@gimjb/tsconfig/browser" based on your project type
}[!TIP] If you target an older version of JavaScript, consider installing tslib and enabling the
importHelpersandnoEmitHelpers:{ "compilerOptions": { "importHelpers": true, "noEmitHelpers": true } }
