Skip to content

Commit

Permalink
upgrade tsc
Browse files Browse the repository at this point in the history
move FEES to @osmonauts/utils
remove all babel
better workspace
tree-shaking support
remove dist/codegen, use tree-shaking import style
  • Loading branch information
pyramation committed Apr 26, 2024
1 parent a923d94 commit 61cdc67
Show file tree
Hide file tree
Showing 2,005 changed files with 462,083 additions and 599,729 deletions.
12 changes: 0 additions & 12 deletions .editorconfig

This file was deleted.

10 changes: 0 additions & 10 deletions .eslintignore

This file was deleted.

76 changes: 0 additions & 76 deletions .eslintrc.js

This file was deleted.

39 changes: 39 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"env": {
"browser": true,
"es2021": true,
"node": true,
"jest": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"overrides": [],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "simple-import-sort", "unused-imports"],
"rules": {
"simple-import-sort/imports": 1,
"simple-import-sort/exports": 1,
"unused-imports/no-unused-imports": 1,
"@typescript-eslint/no-unused-vars": [
1,
{
"argsIgnorePattern": "React|res|next|^_"
}
],
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-var-requires": 0,
"no-console": 0,
"@typescript-eslint/ban-ts-comment": 0,
"prefer-const": 0,
"no-case-declarations": 0,
"no-implicit-globals": 0,
"@typescript-eslint/no-unsafe-declaration-merging": 0
}
}
13 changes: 5 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
.DS_Store
.eslintcache
*.log
**/node_modules
coverage
packages/**/build
packages/**/main
.vscode
**/node_modules/
**/.DS_Store
**/dist
**/yarn-error.log
lerna-debug.log
6 changes: 6 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": false
}
Loading

0 comments on commit 61cdc67

Please sign in to comment.