From 968520261137ac9f3d7795348e14acc8102c5f47 Mon Sep 17 00:00:00 2001 From: forge-bot Date: Tue, 14 Jul 2026 10:14:20 +0000 Subject: [PATCH] =?UTF-8?q?=EA=B3=84=ED=9A=8D=20=EA=B3=84=EC=95=BD=20?= =?UTF-8?q?=EB=AA=85=EC=84=B8=EC=84=9C=20=EC=A0=95=EC=9D=98=20=EB=B0=8F=20?= =?UTF-8?q?=EA=B2=80=EC=A6=9D=20=EA=B8=B0=EC=A4=80=20=EB=B6=84=EC=84=9D=20?= =?UTF-8?q?(iss-6da9ba883259)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- planning-contract/tsconfig.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 planning-contract/tsconfig.json diff --git a/planning-contract/tsconfig.json b/planning-contract/tsconfig.json new file mode 100644 index 0000000..e98bfd6 --- /dev/null +++ b/planning-contract/tsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "target": "ES2020", + "module": "commonjs", + "lib": ["ES2020"], + "outDir": "./dist", + "rootDir": "./", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "declaration": true, + "declarationMap": true, + "sourceMap": true + }, + "include": ["*.ts"], + "exclude": ["node_modules", "dist"] +}