TypeScript 反应 webpack
全局安装 TypeScript,打字和 webpack
npm install -g typescript typings webpack
安装加载器和链接 TypeScript
npm install --save-dev ts-loader source-map-loader npm link typescript
链接 TypeScript 允许 ts-loader 使用 TypeScript 的全局安装,而不需要单独的本地副本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 标记为外部