feat(ts): set target & module

This commit is contained in:
karishmas6
2024-08-03 21:22:01 +05:30
parent 99f17421db
commit a0acb65391

View File

@@ -2,7 +2,10 @@
"compilerOptions": {
"outDir": "./build",
"declaration": true,
"allowJs": true
"allowJs": true,
"target": "es5",
"module": "commonjs",
"esModuleInterop": true
},
"include": ["src"]
}