From c37a96e3b1d3272687a3589528e489b875dc1e81 Mon Sep 17 00:00:00 2001 From: iona-anadras-nemes Date: Thu, 12 Dec 2024 16:20:31 +0100 Subject: [PATCH] pfix linting --- .eslintrc | 5 ++++- tsconfig-test.json | 11 +++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 tsconfig-test.json diff --git a/.eslintrc b/.eslintrc index c0d8308..c4e224b 100644 --- a/.eslintrc +++ b/.eslintrc @@ -3,6 +3,9 @@ "@acuris" ], "parserOptions": { - "project": "./tsconfig.json" + "project": [ + "./tsconfig.json", + "./tsconfig-test.json" + ] } } \ No newline at end of file diff --git a/tsconfig-test.json b/tsconfig-test.json new file mode 100644 index 0000000..157d061 --- /dev/null +++ b/tsconfig-test.json @@ -0,0 +1,11 @@ +{ + "extends": "@acuris/eslint-config/tsconfig.json", + "compilerOptions": { + "noEmit": false, + "module": "commonjs", + "target": "es2017", + "declaration": true, + "outDir": "./dist-test" + }, + "include": ["test/**/*"] +}