grant workspace read

This commit is contained in:
Ruben Fiszel
2022-06-24 20:18:22 +02:00
parent 430179fe58
commit 37c145811d
3 changed files with 9 additions and 3 deletions

View File

@@ -0,0 +1 @@
-- Add down migration script here

View File

@@ -0,0 +1,3 @@
-- Add up migration script here
GRANT SELECT ON workspace TO app;

View File

@@ -1,9 +1,11 @@
{
"compilerOptions": {
"moduleResolution": "node",
"module": "es2020",
"lib": ["es2021", "DOM"],
"target": "es2021",
"module": "esnext",
"lib": ["esnext", "DOM"],
"target": "esnext",
"preserveValueImports": true,
/**
svelte-preprocess cannot figure out whether you have a value or a type, so tell TypeScript
to enforce using \`import type\` instead of \`import\` for Types.