1.0.2 • Published 2 years ago
@kiridevs_configs/tsconfig v1.0.2
@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
+ }
}