front-end
[typescript] tsconfig.json 설명
이 파일은 특정 프로젝트에 추가할 수 있다. 타입 스크립트를 자바스크립트로 컴파일을 할 때 사용된다. 컴파일러는 개발서버를 구독하거나 프로젝트를 빌드할 때 자동으로 호출된다. 컴파일은 백그라운드에서 실행된다. { "compilerOptions": { "target": "es5", "lib": [ "dom", "dom.iterable", "esnext" ], "allowJs": true, "skipLibCheck": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, "strict": true, "forceConsistentCasingInFileNames": true, "noFallthroughCasesInSwitch": true, "..
2024. 2. 11. 18:59