Skip to content

Commit

Permalink
fix: Adjust compilation tooling
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandrordzl committed Sep 10, 2024
1 parent b637384 commit fae5790
Show file tree
Hide file tree
Showing 5 changed files with 8,009 additions and 13 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
"version": "0.1.5",
"description": "Core clients EmProps library",
"main": "dist/index.js",
"types": "types/index.d.ts",
"types": "dist/index.d.ts",
"files": [
"dist",
"types"
],
"author": "David Rodriguez <[email protected]>",
"license": "UNLICENSED",
"scripts": {
"build": "rm -rf dist && tsc",
"build": "rm -rf dist && tsdx build",
"lint": "eslint --fix ."
},
"dependencies": {
Expand All @@ -28,6 +28,7 @@
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"tsdx": "^0.14.1",
"typescript": "^5.5.4"
},
"engines": {
Expand Down
4 changes: 4 additions & 0 deletions src/blockchains/factory.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Ignore linter in all file
/* eslint-disable */
// Ignore ts in all file
// @ts-nocheck
import { BaseCollectionV1 } from "./base/v1";
import { EthereumCollectionV0 } from "./ethereum/v0";
import { EthereumCollectionV1 } from "./ethereum/v1";
Expand Down
1 change: 0 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
export * from "./blockchains";
export * from "./clients";
27 changes: 17 additions & 10 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,26 @@
{
"compilerOptions": {
"target": "es2020",
"module": "commonjs",
"module": "esnext",
"lib": ["dom", "esnext"],
"importHelpers": true,
"declaration": true,
"sourceMap": true,
"rootDir": "./src",
"strict": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"moduleResolution": "node",
"jsx": "react",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"outDir": "dist",
"declaration": true,
"declarationDir": "types",
"baseUrl": ".",
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"baseUrl": "./src",
"paths": {
"@/*": ["src/*"]
},
"discord.js":["./node_modules/discord.js"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules"]
Expand Down
Loading

0 comments on commit fae5790

Please sign in to comment.