diff --git a/CHANGELOG.md b/CHANGELOG.md index 987487e..91ea267 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## Unreleased +- [breaking] Support Node >= 18 - [new] Support Storybook v8 # 7.2.0 (2024-02-12) diff --git a/README.md b/README.md index 1af44da..b0e98c3 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ This project adheres to the [Contributor Covenant code of conduct](https://www.c ## Minimum requirements -- Node 12 +- Node 18 - Storybook 7.0 or 8.0 (for Storybook 6, use axe-storybook-testing v6.3.1) - axe-core 4.0 diff --git a/tsconfig.json b/tsconfig.json index a82c87c..9439639 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,11 +4,11 @@ "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "isolatedModules": true, - "lib": ["es2019"], - "module": "commonjs", + "lib": ["ES2022"], + "module": "node16", "outDir": "build", "skipLibCheck": true, "strict": true, - "target": "es2017", + "target": "ES2022", } }