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"] +}