From 0576193b7684527c44477226da3976fb8bc090b5 Mon Sep 17 00:00:00 2001 From: liquidrinu Date: Thu, 22 May 2025 13:22:33 +0200 Subject: [PATCH] fixed reference --- .gitea/workflows/deploy.yaml | 1 + frontend/tsconfig.json | 22 +++++++++++++++------- 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 76eab4e..a5c7bb5 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -43,6 +43,7 @@ jobs: uses: docker/build-push-action@v4 with: context: ./frontend + file: ./frontend/Dockerfile.dev push: true tags: registry.liquidrinu.com/fusero-frontend:latest cache-from: type=registry,ref=registry.liquidrinu.com/fusero-frontend:buildcache diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 2fb10dc..183e07b 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -1,10 +1,14 @@ { "compilerOptions": { "target": "ESNext", - "lib": ["DOM", "DOM.Iterable", "ESNext", "ES2015"], + "lib": [ + "DOM", + "DOM.Iterable", + "ESNext", + "ES2015" + ], "module": "ESNext", "skipLibCheck": true, - /* Bundler mode */ "moduleResolution": "bundler", "allowImportingTsExtensions": true, @@ -12,7 +16,6 @@ "isolatedModules": true, "noEmit": true, "jsx": "react-jsx", - /* Linting */ "strict": false, "noUnusedLocals": false, @@ -22,7 +25,6 @@ "noImplicitReturns": false, "noImplicitThis": false, "alwaysStrict": false - /* Additional Options */ // "forceConsistentCasingInFileNames": true, // "strictNullChecks": true, @@ -32,6 +34,12 @@ // "incremental": true, // "esModuleInterop": true }, - "include": ["src"], - "references": [{ "path": "./tsconfig.node.json" }] -} + "include": [ + "src" + ], + "references": [ + { + "path": "./tsconfig.node.json" + } + ] +} \ No newline at end of file