Skip to content

Commit

Permalink
#154 Viteへの移行準備
Browse files Browse the repository at this point in the history
  • Loading branch information
ienaga committed Jul 22, 2024
1 parent 8d435bc commit 99a4538
Show file tree
Hide file tree
Showing 31 changed files with 3,788 additions and 897 deletions.
18 changes: 15 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,27 @@
{
"env": {
"es6": true
"browser": true,
"es2021": true
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2017
"ecmaVersion": "latest"
},
"extends": "plugin:@typescript-eslint/eslint-recommended",
"parser": "@typescript-eslint/parser",
"plugins": ["unused-imports"],
"rules": {
"no-unused-vars": "off", // or "@typescript-eslint/no-unused-vars": "off",
"unused-imports/no-unused-imports": "error",
"unused-imports/no-unused-vars": [
"warn",
{
"vars": "all",
"varsIgnorePattern": "^_",
"args": "after-used",
"argsIgnorePattern": "^_"
}
],
"no-var": "error",
"semi": ["error", "always", { "omitLastInOneLineBlock": true }],
"block-spacing": "error",
Expand All @@ -26,7 +39,6 @@
"arrow-spacing": "error",
"no-undef": "off",
"comma-dangle": "warn",
"no-unused-vars": ["error", { "vars": "local", "args": "all" }],
"no-use-before-define": "error",
"no-const-assign": "error",
"space-before-blocks": "error",
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ json
dist
coverage
*.html
package-lock.json
.DS_Store
.idea
Thumbs.db
8 changes: 2 additions & 6 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ node_modules
src
DOCS.md
DEVELOP.md
jest.config.js
jest.setup.js
webpack.config.js
babel.config.js
jsdoc.conf.js
tsconfig.eslint.json
next2d.js
next2d.js
vite.config.ts
15 changes: 0 additions & 15 deletions babel.config.js

This file was deleted.

13 changes: 0 additions & 13 deletions jest.config.js

This file was deleted.

Loading

0 comments on commit 99a4538

Please sign in to comment.