Add tsconfig,json for types

This commit is contained in:
Aadi Desai 2023-09-24 01:32:37 +01:00
parent 4095658b26
commit ce772bdfc4
Signed by: supleed2
SSH key fingerprint: SHA256:CkbNRs0yVzXEiUp2zd0PSxsfRUMFF9bLlKXtE1xEbKM
3 changed files with 35 additions and 0 deletions

18
package-lock.json generated Normal file
View file

@ -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
}
}
}

5
package.json Normal file
View file

@ -0,0 +1,5 @@
{
"devDependencies": {
"@cloudflare/workers-types": "^4.20230914.0"
}
}

12
tsconfig.json Normal file
View file

@ -0,0 +1,12 @@
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"lib": [
"esnext"
],
"types": [
"@cloudflare/workers-types/2023-07-01"
]
}
}