-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
26 lines (26 loc) · 1.05 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
{
"compilerOptions": {
"target": "ES2017",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": false, // 프로그램 일부중에 자바스크립트 확장자 파일을 허용
"skipLibCheck": true, // 모든 .d.ts 파일에 대한 타입체크를 스킵
"strictPropertyInitialization": false, // Check for class properties that are declared but not set in the constructor.
"allowSyntheticDefaultImports": true, // Spec..
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "CommonJS",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true, // 다른 가져오기에 의존하지 않고 각 파일을 안전하게 변환할 수 있는지 확인합니다.
"noEmit": true,
// "jsx": "preserve" Specify what JSX code is generated preserve, react, react-native, react-jsx, or react-jsxdev
},
"include": [
"src"
]
}