@@ -1,4 +1,4 @@
|
||||
datasource DS {
|
||||
datasource db {
|
||||
provider = "postgresql"
|
||||
url = env("DATABASE_URL")
|
||||
}
|
||||
|
||||
@@ -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
17
app/api/tsconfig.json
Normal 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/**/*"]
|
||||
}
|
||||
Reference in New Issue
Block a user