From ab85854d9691bf9356e74b3c8d6ad529d41bcba1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ne=CC=81phe=CC=81lim?= Date: Tue, 24 Sep 2024 00:01:09 +0200 Subject: [PATCH] deploy debug _2 debug tsconfig files --- tsconfig.app.json | 3 ++- tsconfig.node.json | 7 ++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/tsconfig.app.json b/tsconfig.app.json index f0a2350..8eef2b3 100644 --- a/tsconfig.app.json +++ b/tsconfig.app.json @@ -11,7 +11,8 @@ "allowImportingTsExtensions": true, "isolatedModules": true, "moduleDetection": "force", - "noEmit": true, + "composite": true, + "noEmit": false, "jsx": "react-jsx", /* Linting */ diff --git a/tsconfig.node.json b/tsconfig.node.json index 0d3d714..38f9f8f 100644 --- a/tsconfig.node.json +++ b/tsconfig.node.json @@ -10,13 +10,14 @@ "allowImportingTsExtensions": true, "isolatedModules": true, "moduleDetection": "force", - "noEmit": true, - + "noEmit": false, + "jsx": "react-jsx", /* Linting */ "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, - "noFallthroughCasesInSwitch": true + "noFallthroughCasesInSwitch": true, + "composite": true }, "include": ["vite.config.ts"] }