From c54663297ced1788cc3fcf501fc737c7ac344db1 Mon Sep 17 00:00:00 2001 From: Nikhil Nawgiri Date: Sat, 24 Aug 2024 22:32:37 +0200 Subject: [PATCH] Add tsconfig and tslint --- tsconfig.json | 4 ++++ tslint.json | 9 +++++++++ 2 files changed, 13 insertions(+) create mode 100644 tsconfig.json create mode 100644 tslint.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..525024e --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,4 @@ +{ + "module": "esnext", + "resolveJsonModule": true +} diff --git a/tslint.json b/tslint.json new file mode 100644 index 0000000..32fa6e5 --- /dev/null +++ b/tslint.json @@ -0,0 +1,9 @@ +{ + "defaultSeverity": "error", + "extends": [ + "tslint:recommended" + ], + "jsRules": {}, + "rules": {}, + "rulesDirectory": [] +} \ No newline at end of file