Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- mybatis
- IntelliJ
- react
- Python
- xPlatform
- mapreduce
- hadoop
- Android
- 보조정렬
- Express
- 공정능력
- NPM
- MSSQL
- SPC
- window
- SQL
- SSL
- table
- Java
- Eclipse
- Kotlin
- Sqoop
- R
- Spring
- plugin
- es6
- tomcat
- vaadin
- GIT
- JavaScript
Archives
- Today
- Total
DBILITY
intellij typescript auto recompile 본문
반응형
Setting의 Languages & Frameworks-> TypeScript -> Recompile on changes [그림1]처럼 선택하면 된다.
프로젝트 루트에 tsconfig.json을 만들고 다음과 같이 입력한다.
{
"compilerOptions": {
"target": "ES5",
"module": "CommonJS",
"noImplicitAny": true,
"strictNullChecks": true
},
"files": ["0001.ts","0002.ts"]
}
files는 지정하지 않으면 전부 다
https://typescript-kr.github.io/pages/tsconfig.json.html
다음은 코팅애플의 설명 내용이다.
{
"compilerOptions": {
"target": "es5", // 'es3', 'es5', 'es2015', 'es2016', 'es2017','es2018', 'esnext' 가능
"module": "commonjs", //무슨 import 문법 쓸건지 'commonjs', 'amd', 'es2015', 'esnext'
"allowJs": true, // js 파일들 ts에서 import해서 쓸 수 있는지
"checkJs": true, // 일반 js 파일에서도 에러체크 여부
"jsx": "preserve", // tsx 파일을 jsx로 어떻게 컴파일할 것인지 'preserve', 'react-native', 'react'
"declaration": true, //컴파일시 .d.ts 파일도 자동으로 함께생성 (현재쓰는 모든 타입이 정의된 파일)
"outFile": "./", //모든 ts파일을 js파일 하나로 컴파일해줌 (module이 none, amd, system일 때만 가능)
"outDir": "./", //js파일 아웃풋 경로바꾸기
"rootDir": "./", //루트경로 바꾸기 (js 파일 아웃풋 경로에 영향줌)
"removeComments": true, //컴파일시 주석제거
"strict": true, //strict 관련, noimplicit 어쩌구 관련 모드 전부 켜기
"noImplicitAny": true, //any타입 금지 여부
"strictNullChecks": true, //null, undefined 타입에 이상한 짓 할시 에러내기
"strictFunctionTypes": true, //함수파라미터 타입체크 강하게
"strictPropertyInitialization": true, //class constructor 작성시 타입체크 강하게
"noImplicitThis": true, //this 키워드가 any 타입일 경우 에러내기
"alwaysStrict": true, //자바스크립트 "use strict" 모드 켜기
"noUnusedLocals": true, //쓰지않는 지역변수 있으면 에러내기
"noUnusedParameters": true, //쓰지않는 파라미터 있으면 에러내기
"noImplicitReturns": true, //함수에서 return 빼먹으면 에러내기
"noFallthroughCasesInSwitch": true, //switch문 이상하면 에러내기
}
}
반응형
'intellij' 카테고리의 다른 글
intellij .gitignore 동작이 이상할 때 (0) | 2022.01.26 |
---|---|
intellij spring-boot-devtools setting (0) | 2022.01.01 |
intellij Memory Indicator heap clean? (0) | 2021.12.02 |
intellij sql formatting place comma position change (0) | 2021.11.24 |
intellij swing Exception in thread "main" java.awt.IllegalComponentStateException: contentPane cannot be set to null. (0) | 2021.11.23 |
Comments