Add .eslintrc
This commit is contained in:
17
app/.eslintrc.json
Normal file
17
app/.eslintrc.json
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"env": {
|
||||||
|
"browser": true,
|
||||||
|
"commonjs": true,
|
||||||
|
"es6": true
|
||||||
|
},
|
||||||
|
"extends": "eslint:recommended",
|
||||||
|
"globals": {
|
||||||
|
"Atomics": "readonly",
|
||||||
|
"SharedArrayBuffer": "readonly"
|
||||||
|
},
|
||||||
|
"parserOptions": {
|
||||||
|
"ecmaVersion": 2018
|
||||||
|
},
|
||||||
|
"rules": {
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,18 +1,17 @@
|
|||||||
const LiveReloadPlugin = require('webpack-livereload-plugin');
|
const LiveReloadPlugin = require('webpack-livereload-plugin');
|
||||||
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
|
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
|
||||||
const HtmlWebpackPlugin = require('html-webpack-plugin')
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
||||||
const webpack = require('webpack');
|
const webpack = require('webpack');
|
||||||
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
entry: {
|
entry: {
|
||||||
app: "./src/index.tsx",
|
app: './src/index.tsx',
|
||||||
bugtracking: "./src/utils/bugtracking.ts",
|
bugtracking: './src/utils/bugtracking.ts',
|
||||||
},
|
},
|
||||||
output: {
|
output: {
|
||||||
chunkFilename: '[name].bundle.js',
|
chunkFilename: '[name].bundle.js',
|
||||||
filename: "[name].bundle.js",
|
filename: '[name].bundle.js',
|
||||||
path: __dirname + "/build"
|
path: `${__dirname}/build`,
|
||||||
},
|
},
|
||||||
optimization: {
|
optimization: {
|
||||||
splitChunks: {
|
splitChunks: {
|
||||||
@@ -29,45 +28,45 @@ module.exports = {
|
|||||||
test: /[\\/]node_modules[\\/](react|react-dom|@material-ui|popper\.js|react|react-redux|prop-types|jss|redux|scheduler|react-transition-group)[\\/]/,
|
test: /[\\/]node_modules[\\/](react|react-dom|@material-ui|popper\.js|react|react-redux|prop-types|jss|redux|scheduler|react-transition-group)[\\/]/,
|
||||||
name: 'vendors',
|
name: 'vendors',
|
||||||
chunks: 'all',
|
chunks: 'all',
|
||||||
priority: -10
|
priority: -10,
|
||||||
},
|
},
|
||||||
default: {
|
default: {
|
||||||
minChunks: 2,
|
minChunks: 2,
|
||||||
priority: -20,
|
priority: -20,
|
||||||
reuseExistingChunk: true
|
reuseExistingChunk: true,
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
devServer: {
|
devServer: {
|
||||||
// contentBase: './dist', // content not from webpack
|
// contentBase: './dist', // content not from webpack
|
||||||
hot: true
|
hot: true,
|
||||||
},
|
},
|
||||||
target: 'electron-renderer',
|
target: 'electron-renderer',
|
||||||
mode: 'production',
|
mode: 'production',
|
||||||
devtool: "cheap-source-map",
|
devtool: 'cheap-source-map',
|
||||||
resolve: {
|
resolve: {
|
||||||
// Add '.ts' and '.tsx' as resolvable extensions.
|
// Add '.ts' and '.tsx' as resolvable extensions.
|
||||||
extensions: [".ts", ".tsx", ".js", ".json"]
|
extensions: ['.ts', '.tsx', '.js', '.json'],
|
||||||
},
|
},
|
||||||
module: {
|
module: {
|
||||||
rules: [
|
rules: [
|
||||||
// All files with a '.ts' or '.tsx' extension will be handled by 'awesome-typescript-loader'.
|
// All files with a '.ts' or '.tsx' extension will be handled by 'awesome-typescript-loader'.
|
||||||
{ test: /\.tsx?$/, loader: "awesome-typescript-loader" },
|
{ test: /\.tsx?$/, loader: 'awesome-typescript-loader' },
|
||||||
// All output '.js' files will have any sourcemaps re-processed by 'source-map-loader'.
|
// All output '.js' files will have any sourcemaps re-processed by 'source-map-loader'.
|
||||||
{ enforce: "pre", test: /\.js$/, loader: "source-map-loader" },
|
{ enforce: 'pre', test: /\.js$/, loader: 'source-map-loader' },
|
||||||
{
|
{
|
||||||
test: /\.css$/,
|
test: /\.css$/,
|
||||||
use: ['style-loader', 'css-loader'],
|
use: ['style-loader', 'css-loader'],
|
||||||
},
|
},
|
||||||
]
|
],
|
||||||
},
|
},
|
||||||
|
|
||||||
plugins: [
|
plugins: [
|
||||||
new LiveReloadPlugin({}),
|
new LiveReloadPlugin({}),
|
||||||
new HtmlWebpackPlugin({ template: './index.html', file: './build/index.html', inject: false }),
|
new HtmlWebpackPlugin({ template: './index.html', file: './build/index.html', inject: false }),
|
||||||
new BundleAnalyzerPlugin(),
|
new BundleAnalyzerPlugin(),
|
||||||
new webpack.HotModuleReplacementPlugin()
|
new webpack.HotModuleReplacementPlugin(),
|
||||||
],
|
],
|
||||||
|
|
||||||
// When importing a module whose path matches one of the following, just
|
// When importing a module whose path matches one of the following, just
|
||||||
@@ -77,5 +76,5 @@ module.exports = {
|
|||||||
externals: {
|
externals: {
|
||||||
// "react": "React",
|
// "react": "React",
|
||||||
// "react-dom": "ReactDOM"
|
// "react-dom": "ReactDOM"
|
||||||
}
|
},
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user