From 612ed1898aeb1288c092026904b5a62c3f4f0e66 Mon Sep 17 00:00:00 2001 From: kdh8219 <65698239+kdh8219@users.noreply.github.com> Date: Fri, 28 Apr 2023 23:39:29 +0900 Subject: [PATCH] add tsconfig.json --- .gitignore | 3 +++ tsconfig.json | 10 ++++++++++ 2 files changed, 13 insertions(+) create mode 100644 tsconfig.json diff --git a/.gitignore b/.gitignore index 9aab4a3..968bd24 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,6 @@ # 패키지 /node_modules + +#빌드파일 +/out diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..3559db4 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,10 @@ +{ + "compilerOptions": { + "rootDir": "src", + "outDir": "out", + "target": "ES2022", + "module": "ES2022", + "moduleResolution": "node" + }, + "exclude": ["temp", "test"] +}