webpack.config.js配置文件
代码语言:javascript复制resolve: {
extensions: ['.tsx', '.ts', '.js', '.less', '.json'],
alias: {
'@': resolve('../src'),
},
},
一般情况下配置好这个后,在设置webpack配置文件的位置就没问题了
但在typeScript的tsx中无效。还需增加以下配置.eslint配置文件也会提示报错
eslint.js文件配置
代码语言:javascript复制module.exports = {
env: {
browser: true,
es6: true,
},
extends: [
'plugin:react/recommended',
'airbnb',
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
jsx: true,
legacyDecorators: true,
experimentalObjectRestSpread: true
},
ecmaVersion: 6,
sourceType: 'module',
},
plugins: [
'react',
'@typescript-eslint',
],
rules: {
"indent": ["error", 4], // 缩进
"comma-dangle": 'off', // 禁止逗号的检测
"no-trailing-spaces": "off", // 允许有多余的空行
"no-tabs": "off", // tab缩进问题
"object-curly-spacing": "off", // {}后需要空格问题
"react/jsx-indent": "off",
"react/jsx-tag-spacing": "off",
"react/jsx-filename-extension": "off", // 允许在tsx中使用jsx语法
"react/jsx-curly-brace-presence": "off", // 允许在tsx中使用jsx语法
"jsx-quotes": [0, "prefer-double"], //强制在JSX属性(jsx-quotes)中一致使用双引号
"react/display-name": 0, //防止在React组件定义中丢失displayName
"react/forbid-prop-types": [2, {"forbid": ["any"]}], //禁止某些propTypes
"react/jsx-boolean-value": 0, //在JSX中强制布尔属性符号
"react/jsx-closing-bracket-location": 0, //在JSX中验证右括号位置
"react/jsx-curly-spacing": [2, {"when": "never", "children": true}], //在JSX属性和表达式中加强或禁止大括号内的空格。
// "react/jsx-indent-props": [2, 4], //验证JSX中的props缩进
"react/jsx-key": 2, //在数组或迭代器中验证JSX具有key属性
"react/jsx-max-props-per-line": 0, // 限制JSX中单行上的props的最大数量
"react/jsx-no-bind": 0, //JSX中不允许使用箭头函数和bind
"react/jsx-no-duplicate-props": 2, //防止在JSX中重复的props
"react/jsx-no-literals": 0, //防止使用未包装的JSX字符串
"react/jsx-no-undef": 1, //在JSX中禁止未声明的变量
"react/jsx-pascal-case": 0, //为用户定义的JSX组件强制使用PascalCase
"react/jsx-sort-props": 0, //强化props按字母排序
"react/jsx-uses-react": 1, //防止反应被错误地标记为未使用
"react/jsx-uses-vars": 2, //防止在JSX中使用的变量被错误地标记为未使用
"react/no-danger": 0, //防止使用危险的JSX属性
"react/no-did-mount-set-state": 0, //防止在componentDidMount中使用setState
"react/no-did-update-set-state": 1, //防止在componentDidUpdate中使用setState
"react/no-direct-mutation-state": 2, //防止this.state的直接变异
"react/no-multi-comp": 2, //防止每个文件有多个组件定义
"react/no-set-state": 0, //防止使用setState
"react/no-unknown-property": 2, //防止使用未知的DOM属性
"react/prefer-es6-class": 2, //为React组件强制执行ES5或ES6类
"react/prop-types": 0, //防止在React组件定义中丢失props验证
"react/react-in-jsx-scope": 2, //使用JSX时防止丢失React
"react/self-closing-comp": 0, //防止没有children的组件的额外结束标签
"react/sort-comp": 2, //强制组件方法顺序
"no-extra-boolean-cast": 0, //禁止不必要的bool转换
"react/no-array-index-key": 0, //防止在数组中遍历中使用数组key做索引
"react/no-deprecated": 1, //不使用弃用的方法
"react/jsx-equals-spacing": 2, //在JSX属性中强制或禁止等号周围的空格
"no-unreachable": 1, //不能有无法执行的代码
"no-mixed-spaces-and-tabs": 0, //禁止混用tab和空格
"prefer-arrow-callback": 0, //比较喜欢箭头回调
"arrow-parens": 0, //箭头函数用小括号括起来
"arrow-spacing": 0 //=>的前/后括号
},
};
在tsconfig.json文件中增加
代码语言:javascript复制 "baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
代码语言:javascript复制{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"importHelpers": true,
"jsx": "react",
"esModuleInterop": true,
"sourceMap": true,
"experimentalDecorators": true,
"outDir": "lib",
"allowSyntheticDefaultImports": true,
"allowJs": true,
"emitDecoratorMetadata": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["./package/**/*", "./types/**/*"]
}
此文件中的paths要和webpack中的alias配置一致,且baseURl不能省略
可以使用@来引入文件并且支持快捷跳转了
代码语言:javascript复制/* 入口JS */
import React, {Component} from 'react';
import ReactDOM from 'react-dom'
import {
HashRouter as Router,
Route,
Switch,
Redirect,
} from 'react-router-dom' // 路由组件
import {Provider, observer} from 'mobx-react'
import AntDemo from '@/pages/ant'
import '@/common/css/html/main.less'
@observer
class App extends Component<any, any> {
render() {
return (
<Router>
<Switch>
<Route exact path='/' component={AntDemo}/>}/>
<Route path='/test' component={AntDemo}/>
</Switch>
</Router>
);
}
}