Sign In

@left-curve/config

Package Overview
Dependencies
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@left-curve/config - npm Package Compare versions

Comparing version
0.1.0
to
1.0.0
+7
README.md
# @left-curve/config
This package provides a common configurations for tsconfig, tsup, biome used in other @left-curve libraries.
## License
TBD
+14
-22
{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"organizeImports": {
"enabled": true
"$schema": "https://biomejs.dev/schemas/2.1.3/schema.json",
"assist": {
"actions": {
"source": {
"organizeImports": "off"
}
}
},

@@ -16,2 +20,5 @@ "formatter": {

"rules": {
"correctness": {
"useExhaustiveDependencies": "off"
},
"performance": {

@@ -31,3 +38,4 @@ "noDelete": "off"

"noConfusingVoidType": "off",
"noExplicitAny": "off"
"noExplicitAny": "off",
"useAdjacentOverloadSignatures": "off"
}

@@ -37,20 +45,4 @@ }

"files": {
"ignore": ["**/build/**", "**/package.json"]
},
"overrides": [
{
"include": ["sdk/examples/**", "ui/**"],
"linter": {
"rules": {
"correctness": {
"useExhaustiveDependencies": "off"
},
"a11y": {
"noSvgWithoutTitle": "off",
"useKeyWithClickEvents": "off"
}
}
}
}
]
"includes": ["**", "!**/build/**", "!**/package.json", "!**/*.test.ts", "!**/*.spec.ts"]
}
}
{
"name": "@left-curve/config",
"version": "0.1.0",
"version": "1.0.0",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"files": [
"ts",
"biome",
"tsup",
"typedoc"
"tsup"
],
"license": "TBD",
"homepage": "https://dango.exchange",
"repository": "left-curve/left-curve",
"keywords": [
"grug",
"smart-contracts",
"blockchain",
"cryptocurrency",
"web3",
"typescript"
]
}

@@ -6,5 +6,5 @@ {

"isolatedModules": true,
"lib": ["dom", "dom.iterable", "es2021"],
"lib": ["dom", "dom.iterable", "es2022"],
"moduleDetection": "force"
}
}

@@ -16,5 +16,5 @@ {

"strict": true,
"target": "es2021"
"target": "es2022"
},
"exclude": ["node_modules", "build", "dist"]
}
{
"$schema": "https://typedoc.org/schema.json",
"includeVersion": true,
"exclude": ["**/*.spec.ts"],
"excludeExternals": true,
"excludePrivate": true
}