diff --git a/README.md b/README.md index bb4c318..2099ccc 100644 --- a/README.md +++ b/README.md @@ -31,12 +31,28 @@ Add to your `tsconfig.json`: or +```json +{ + "extends": "@byndyusoft/tsconfig/tsconfig.app.node16.json" +} +``` + +or + ```json { "extends": "@byndyusoft/tsconfig/tsconfig.node18.json" } ``` +or + +```json +{ + "extends": "@byndyusoft/tsconfig/tsconfig.app.node18.json" +} +``` + ## Maintainers - [@Byndyusoft/owners](https://github.com/orgs/Byndyusoft/teams/owners) <> diff --git a/tsconfig.app.node16.json b/tsconfig.app.node16.json new file mode 100644 index 0000000..c656864 --- /dev/null +++ b/tsconfig.app.node16.json @@ -0,0 +1,9 @@ +{ + "extends": "./tsconfig.node16.json", + "compilerOptions": { + // Emit + "declaration": false, + "declarationMap": false, + "removeComments": true + } +} diff --git a/tsconfig.app.node18.json b/tsconfig.app.node18.json new file mode 100644 index 0000000..3206f6f --- /dev/null +++ b/tsconfig.app.node18.json @@ -0,0 +1,9 @@ +{ + "extends": "./tsconfig.node18.json", + "compilerOptions": { + // Emit + "declaration": false, + "declarationMap": false, + "removeComments": true + } +}