Upgrade redwood to 0.33

Resolves #341.
This commit is contained in:
Kurt Hutten
2021-06-05 12:52:39 +10:00
parent e433648fe6
commit 563700d995
9 changed files with 3744 additions and 1569 deletions

View File

@@ -1,4 +1,4 @@
datasource DS {
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}

View File

@@ -3,8 +3,8 @@
"version": "0.0.0",
"private": true,
"dependencies": {
"@redwoodjs/api": "0.32.2",
"@redwoodjs/api-server": "0.32.2",
"@redwoodjs/api": "^0.33.0",
"@redwoodjs/api-server": "^0.33.0",
"cloudinary": "^1.23.0"
}
}
}

17
app/api/tsconfig.json Normal file
View File

@@ -0,0 +1,17 @@
{
"compilerOptions": {
"noEmit": true,
"allowJs": true,
"esModuleInterop": true,
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"baseUrl": "./",
"paths": {
"src/*": ["./src/*"]
},
"typeRoots": ["../node_modules/@types", "./node_modules/@types"],
"types": ["jest"]
},
"include": ["src", "../.redwood/**/*"]
}