TypeScript
React (JS 및 네이티브)에서 Typescript 사용
수색…
Typescript로 작성된 ReactJS 구성 요소
ReactJS의 구성 요소를 TypeScript에서 쉽게 사용할 수 있습니다. 'jsx'파일 확장명을 'tsx'로 바꿉니다.
//helloMessage.tsx:
var HelloMessage = React.createClass({
render: function() {
return <div>Hello {this.props.name}</div>;
}
});
ReactDOM.render(<HelloMessage name="John" />, mountNode);
그러나 TypeScript의 주요 기능 (정적 유형 검사)을 최대한 활용하려면 다음 두 가지 작업을 수행해야합니다.
1) React.createClass를 ES6 클래스로 변환 :
//helloMessage.tsx:
class HelloMessage extends React.Component {
render() {
return <div>Hello {this.props.name}</div>;
}
}
ReactDOM.render(<HelloMessage name="John" />, mountNode);
ES6로 변환하는 방법에 대한 자세한 내용은 여기를 참조하십시오.
2) 소품 및 주 인터페이스 추가 :
interface Props {
name:string;
optionalParam?:number;
}
interface State {
//empty in our case
}
class HelloMessage extends React.Component<Props, State> {
render() {
return <div>Hello {this.props.name}</div>;
}
}
// TypeScript will allow you to create without the optional parameter
ReactDOM.render(<HelloMessage name="Sebastian" />, mountNode);
// But it does check if you pass in an optional parameter of the wrong type
ReactDOM.render(<HelloMessage name="Sebastian" optionalParam='foo' />, mountNode);
이제 프로그래머가 props를 잊어 버리면 TypeScript에서 오류를 표시합니다. 또는 인터페이스에 정의되지 않은 소품을 전달하려고하는 경우.
Typescript & react & webpack
타이프 스크립트, 타이핑 및 웹팩 설치
npm install -g typescript typings webpack
로더 설치 및 타이프 스크립트 연결
npm install --save-dev ts-loader source-map-loader npm link typescript
TypeScript를 연결하면 ts-loader가 별도의 로컬 사본 typescript doc 대신 TypeScript를 전역으로 사용할 수 있습니다
typescript 2.x로 .d.ts
파일 설치
npm i @types/react --save-dev
npm i @types/react-dom --save-dev
typescript 1.x로 .d.ts
파일 설치
typings install --global --save dt~react
typings install --global --save dt~react-dom
tsconfig.json
구성 파일
{
"compilerOptions": {
"sourceMap": true,
"noImplicitAny": true,
"module": "commonjs",
"target": "es5",
"jsx": "react"
}
}
webpack.config.js
구성 파일
module.exports = {
entry: "<path to entry point>",// for example ./src/helloMessage.tsx
output: {
filename: "<path to bundle file>", // for example ./dist/bundle.js
},
// Enable sourcemaps for debugging webpack's output.
devtool: "source-map",
resolve: {
// Add '.ts' and '.tsx' as resolvable extensions.
extensions: ["", ".webpack.js", ".web.js", ".ts", ".tsx", ".js"]
},
module: {
loaders: [
// All files with a '.ts' or '.tsx' extension will be handled by 'ts-loader'.
{test: /\.tsx?$/, loader: "ts-loader"}
],
preLoaders: [
// All output '.js' files will have any sourcemaps re-processed by 'source-map-loader'.
{test: /\.js$/, loader: "source-map-loader"}
]
},
// When importing a module whose path matches one of the following, just
// assume a corresponding global variable exists and use that instead.
// This is important because it allows us to avoid bundling all of our
// dependencies, which allows browsers to cache those libraries between builds.
externals: {
"react": "React",
"react-dom": "ReactDOM"
},
};
마침내 webpack
또는 webpack -w
(시계 모드의 경우)
참고 : React 및 ReactDOM은 외부로 표시됩니다.
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow