add tsconfig.json
This commit is contained in:
parent
d978933936
commit
612ed1898a
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -5,3 +5,6 @@
|
|||
|
||||
# 패키지
|
||||
/node_modules
|
||||
|
||||
#빌드파일
|
||||
/out
|
||||
|
|
10
tsconfig.json
Normal file
10
tsconfig.json
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
"rootDir": "src",
|
||||
"outDir": "out",
|
||||
"target": "ES2022",
|
||||
"module": "ES2022",
|
||||
"moduleResolution": "node"
|
||||
},
|
||||
"exclude": ["temp", "test"]
|
||||
}
|
Loading…
Reference in a new issue