Covert to ESM and get it functional locally

This commit is contained in:
Allan Carr
2024-08-27 13:45:12 -07:00
parent e793402a79
commit 36ada6fd1f
19 changed files with 980 additions and 1046 deletions

View File

@@ -2,13 +2,9 @@
"compilerOptions": {
/* Language and Environment */
"target": "ESNext" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
// "lib": [
// "ESNext",
// "DOM"
// ]
/* Modules */
"module": "ESNext" /* Specify what module code is generated. */,
"moduleResolution": "Node",
"module": "NodeNext" /* Specify what module code is generated. */,
"moduleResolution": "NodeNext",
"resolveJsonModule": true /* Enable importing .json files */,
"outDir": "./dist" /* Specify an output folder for all emitted files. */,