@kiridevs_configs/tsconfig
v1.0.2
Published
kiriDevs' base TSConfig (mainly made for Node18)
Downloads
3
Readme
@kiridevs_configs/tsconfig
This package contains my personal default tsconfig.json
.
Usage
Consult LICENSE.md
for license information.
This package is published on npm
.
After installing it, create a tsconfig.json
that extends
this package:
// tsconfig.json
{
"extends": "@kiridevs_configs/tsconfig"
}
Extending
To extend this base config, follow TypeScript standards by adding your desired
overrides to the tsconfig.json
you already created:
--- a/tsconfig.json
+++ b/tsconfig.json
{
"extends": "@kiriDevs_configs/tsconfig",
+ "compilerOptions: {
+ "noImplicitAny": false
+ }
}