Skip to content
This repository was archived by the owner on Mar 14, 2026. It is now read-only.

Commit c766894

Browse files
committed
Update TypeScript config to use CommonJS module system
- Switch module from 'Preserve' to 'CommonJS' for compatibility - Set moduleResolution to 'Node10' and enable esModuleInterop - Remove incompatible options to streamline build process
1 parent ed25ef5 commit c766894

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
{
22
"compilerOptions": {
33
"target": "ESNext",
4-
"module": "Preserve",
5-
"moduleDetection": "force",
6-
"allowJs": true,
7-
"moduleResolution": "bundler",
8-
"verbatimModuleSyntax": true,
4+
"module": "CommonJS",
5+
"moduleResolution": "Node10",
6+
"esModuleInterop": true,
97
"skipLibCheck": true
108
}
119
}

0 commit comments

Comments
 (0)