diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..bfdb879 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,18 @@ +{ + "name": "ICAS", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "devDependencies": { + "@cloudflare/workers-types": "^4.20230914.0" + } + }, + "node_modules/@cloudflare/workers-types": { + "version": "4.20230914.0", + "resolved": "https://registry.npmjs.org/@cloudflare/workers-types/-/workers-types-4.20230914.0.tgz", + "integrity": "sha512-OVeN4lFVu1O0PJGZ2d0FwpK8lelFcr33qYOgCh77ErEYmEBO4adwnIxcIsdQbFbhF0ffN6joiVcljD4zakdaeQ==", + "dev": true + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..767d36d --- /dev/null +++ b/package.json @@ -0,0 +1,5 @@ +{ + "devDependencies": { + "@cloudflare/workers-types": "^4.20230914.0" + } +} diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..68fd1e8 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,12 @@ +{ + "compilerOptions": { + "target": "esnext", + "module": "esnext", + "lib": [ + "esnext" + ], + "types": [ + "@cloudflare/workers-types/2023-07-01" + ] + } +} \ No newline at end of file