From 0622c534bcb3d07052af6a8df95921d85793df9c Mon Sep 17 00:00:00 2001 From: Hide_D Date: Fri, 4 Aug 2023 16:08:48 +0000 Subject: [PATCH] =?UTF-8?q?=EC=9D=BC=EB=B6=80=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- tsconfig.json | 15 +++++++++++++-- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 9f634d0..47419a8 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "private": true, "scripts": { "dev:client": "vite", - "dev:server": "nodemon ", + "dev:server": "nodemon --watch 'src/**/*.ts' --exec 'node --experimental-specifier-resolution=node --loader ts-node/esm' server/index.ts", "dev": "concurrently 'npm:dev:client' 'npm:dev:server'", "build": "run-p build:client build:server", "build:client": "run-p type-check build-only:client", diff --git a/tsconfig.json b/tsconfig.json index 66b5e57..4d75844 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,6 +6,17 @@ }, { "path": "./tsconfig.app.json" - } - ] + }, + ], + "compilerOptions": { + "experimentalDecorators": true, + "emitDecoratorMetadata": true, + "resolveJsonModule": true, + "isolatedModules": true, + "verbatimModuleSyntax": true, + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "strict": true, + } }