From e2936430d09326fd6346fd09f3c3bf1d2870f492 Mon Sep 17 00:00:00 2001 From: Arie Trouw Date: Fri, 6 Sep 2024 11:49:59 -0700 Subject: [PATCH] deploy 2.0.2 --- eslint.config.mjs | 2 +- package.json | 2 +- tsconfig-eslint.json | 5 ++++- tsconfig.json | 7 ------- 4 files changed, 6 insertions(+), 10 deletions(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index 2ac8e0c..50d2167 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -5,7 +5,7 @@ import { } from '@xylabs/eslint-config-flat' export default [ - { ignores: ['.yarn/**', 'jest.config.cjs', '**/dist/**', 'dist', 'build/**', 'node_modules/**'] }, + { ignores: ['.yarn/**', 'jest.config.cjs', '**/dist/**', 'dist', 'build/**', 'node_modules/**', 'eslint.config.mjs'] }, ...xylabsConfig, { rules: { diff --git a/package.json b/package.json index a34391b..e961d28 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@xylabs/pixel", - "version": "2.0.1", + "version": "2.0.2", "description": "Event Client for xylabs ESB", "homepage": "https://xylabs.com", "bugs": { diff --git a/tsconfig-eslint.json b/tsconfig-eslint.json index 2c8ae7c..d565329 100644 --- a/tsconfig-eslint.json +++ b/tsconfig-eslint.json @@ -1,4 +1,7 @@ { + "compilerOptions": { + "allowJs": true, + }, "exclude": [".yarn", "dist", "**/dist", "./**/docs"], - "extends": "@xylabs/tsconfig" + "extends": "./tsconfig.json" } diff --git a/tsconfig.json b/tsconfig.json index 208b814..4f18813 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,11 +1,4 @@ { - "compilerOptions": { - "emitDecoratorMetadata": true, - "experimentalDecorators": true, - "moduleResolution": "NodeNext", - "module": "NodeNext", - "incremental": false - }, "exclude": ["./node_modules", "./**/node_modules", "./dist", "./**/dist", "./**/docs", ".*"], "extends": "@xylabs/tsconfig-dom", }