-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
38 lines (38 loc) · 1.15 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
30
31
32
33
34
35
36
37
38
{
"compilerOptions": {
"jsx": "preserve", // tsx -> jsx 어떻게 컴파일 할건지
"target": "es6", // 컴파일 될 js 버전
"lib": ["es2015", "dom", "dom.iterable"], // 컴파일에 포함할 라이브러리
"module": "commonJS", // 모듈 import에서 어떤 문법을 쓸지 (requier or import)
"allowJs": true, // js 코드 허용
"esModuleInterop": true, // require 문법과 import 문법 호환
"noImplicitReturns": true, // 함수 return 없으면 에러
"moduleResolution": "node",
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true,
"resolveJsonModule": true,
"isolatedModules": true,
"plugins": [
{
"name": "next"
}
],
"strictNullChecks": true
},
"baseUrl": ".",
"paths": {
"@/*": ["app/*"]
},
"include": [
"next-env.d.ts",
"./tailwind.config.json",
"src/**/*",
".next/types/**/*.ts",
"app/api"
], // ts 적용할 경로
"exclude": ["node_modules", "src/router"], // ts 적용하지 않을 폴더,
"plugins": [{ "name": "typescript-plugin-css-modules" }]
}