-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
29 lines (29 loc) ยท 1.36 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"compilerOptions": {
"target": "es6", // ์ด๋ค ๋ฒ์ ์ผ๋ก ์ปดํ์ผ
"allowSyntheticDefaultImports": true, // default export๊ฐ ์๋ ๋ชจ๋์์ default imports๋ฅผ ํ์ฉ
"experimentalDecorators": true, // decorator ์คํ์ ํ์ฉ
"emitDecoratorMetadata": true, // ๋ฐ์ฝ๋ ์ดํฐ๊ฐ ์๋ ์ ์ธ์ ๋ํด ํน์ ํ์
์ ๋ฉํ ๋ฐ์ดํฐ๋ฅผ ๋ด๋ณด๋ด๋ ์คํ์ ์ธ ์ง์
"strictPropertyInitialization": false,
"skipLibCheck": true, // ์ ์ ํ์ผ ํ์
์ฒดํฌ ์ฌ๋ถ
"moduleResolution": "node", // commonJS -> node ์์ ๋์
"module": "commonjs", // import ๋ฌธ๋ฒ
"strict": true, // ํ์
๊ฒ์ฌ ์๊ฒฉํ๊ฒ
"pretty": true, // error ๋ฉ์์ง ์์๊ฒ
"sourceMap": true, // ์์ค๋งต ํ์ผ ์์ฑ -> .ts๊ฐ .js ํ์ผ๋ก ํธ๋์ค ์ .js.map ์์ฑ
"outDir": "./dist", // ํธ๋์ค ํ์ผ (.js) ์ ์ฅ ๊ฒฝ๋ก
"allowJs": true, // js ํ์ผ ts์์ import ํ์ฉ
"esModuleInterop": true, // ES6 ๋ชจ๋ ์ฌ์์ ์ค์ํ์ฌ CommonJS ๋ชจ๋์ ๊ฐ์ ธ์ฌ ์ ์๊ฒ ํ์ฉ
"typeRoots": [
"./src/types/express.d.ts", // ํ์
(*.d.ts)ํ์ผ์ ๊ฐ์ ธ์ฌ ๋๋ ํ ๋ฆฌ ์ค์
"./node_modules/@types" // ์ค์ ์ํ ์ ๊ธฐ๋ณธ์ ์ผ๋ก ./node_modules/@types
]
},
"include": [
"./src/**/*" // build ์ ํฌํจ
],
"exclude": [
"node_modules", // build ์ ์ ์ธ
"tests"
]
}