Update TypeScript configuration in API package to use ES2022 module and bundler resolution. This change enhances compatibility with modern JavaScript features and improves the build process.

This commit is contained in:
Matiss Janis Aboltins
2026-03-04 21:13:40 +00:00
parent 6ce931ca20
commit a41d0b3323

View File

@@ -5,8 +5,8 @@
// Using ES2021 because that's the newest version where
// the latest Node 16.x release supports all of the features
"target": "ES2021",
"module": "CommonJS",
"moduleResolution": "node10",
"module": "es2022",
"moduleResolution": "bundler",
"noEmit": false,
"declaration": true,
"declarationMap": true,