From 2061d1559fd1b4b0e6efcd3aee02d7494ecf0c2f Mon Sep 17 00:00:00 2001 From: rca Date: Mon, 12 Aug 2024 21:21:43 +0900 Subject: [PATCH] fix tsconfig --- tsconfig.json | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 9df8248..386c1d7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,18 +2,16 @@ "compilerOptions": { "target": "es2022", "module": "es2022", - "outDir": "./dist", "strict": true, "moduleResolution": "node", "esModuleInterop": true, "typeRoots": ["./node_modules/@types", "./src/types"], "emitDecoratorMetadata": true, - "experimentalDecorators": true, + "experimentalDecorators": true }, - "extends": "./tsconfig.paths.json", "include": ["src/**/*.ts", "src/*.ts"], "ts-node": { "esm": true, - "experimentalSpecifierResolution": "node", - }, + "experimentalSpecifierResolution": "node" + } }