migrations to parcel

This commit is contained in:
SethBurkart123
2023-12-27 09:47:20 +11:00
parent b2d2c29bb4
commit 3aae2d12d8
24 changed files with 130 additions and 101 deletions
+18 -1
View File
@@ -10,5 +10,22 @@
"ecmaVersion": "latest",
"sourceType": "module" // add this line to allow 'import' and 'export' statements
},
"rules": {}
"rules": {
// allow importing ts extensions
"sort-imports": ["error", {
"ignoreCase": true,
"ignoreDeclarationSort": true,
"ignoreMemberSort": false,
"memberSyntaxSortOrder": ["none", "all", "multiple", "single"]
}],
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"ts": "never",
"tsx": "never"
}
]
}
}