Apply prettier

This commit is contained in:
Adam Goldsmith 2022-03-10 23:38:38 -05:00
parent cc637bfb0f
commit af875b659d
3 changed files with 9 additions and 10 deletions

View File

@ -1,7 +1,9 @@
module.exports = {
plugins: ['@babel/plugin-transform-runtime'],
presets: [
['@babel/preset-env', {
[
'@babel/preset-env',
{
useBuiltIns: 'usage',
corejs: 3,
},

View File

@ -11,7 +11,7 @@
}
.fc .fc-timegrid-now-indicator-line {
border-color: rgba(255, 0, 0, .4);
border-color: rgba(255, 0, 0, 0.4);
border-top-width: 1px;
border-top-color: red;
border-bottom-width: 9px;

View File

@ -11,7 +11,7 @@ module.exports = {
},
},
},
devtool: "eval-cheap-source-map",
devtool: 'eval-cheap-source-map',
module: {
rules: [
{
@ -22,22 +22,19 @@ module.exports = {
{
test: /\.tsx?$/,
exclude: /node_modules/,
use: [
'babel-loader',
'ts-loader',
],
use: ['babel-loader', 'ts-loader'],
},
{
test: /\.css$/i,
use: ["style-loader", "css-loader"],
use: ['style-loader', 'css-loader'],
},
{
test: /\/index.html$/i,
use: {
loader: "file-loader",
loader: 'file-loader',
options: {
name: '[name].[ext]',
}
},
},
},
],