add tsconfig.json

This commit is contained in:
kdh8219 2023-04-28 23:39:29 +09:00
parent d978933936
commit 612ed1898a
2 changed files with 13 additions and 0 deletions

3
.gitignore vendored
View file

@ -5,3 +5,6 @@
# 패키지
/node_modules
#빌드파일
/out

10
tsconfig.json Normal file
View file

@ -0,0 +1,10 @@
{
"compilerOptions": {
"rootDir": "src",
"outDir": "out",
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "node"
},
"exclude": ["temp", "test"]
}