Skip to content

Commit

Permalink
Update generated build so is easier for projects to include the sdk i…
Browse files Browse the repository at this point in the history
…n their building processes
  • Loading branch information
earrietadev committed Mar 26, 2024
1 parent ce556df commit 9482412
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@creit.tech/sorobandomains-sdk",
"version": "0.1.1",
"version": "0.1.2",
"description": "An SDK to easily fetch domains from the sorobandomains.org protocol",
"license": "MIT",
"author": {
Expand All @@ -9,7 +9,7 @@
},
"main": "build/index",
"typings": "build/index.d.ts",
"type": "commonjs",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Creit-Tech/sorobandomains-sdk-js.git"
Expand Down
35 changes: 30 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,42 @@
{
"compilerOptions": {
"skipLibCheck": true,
"target": "es2019",
"outDir": "build",
"rootDir": "src",
"moduleResolution": "node",
"module": "es2020",
"declaration": true,
"declarationMap": true,
"outDir": "./build",
"strict": true,
"inlineSources": true,
"inlineSourceMap": true,
"esModuleInterop": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"useDefineForClassFields": false,
"strict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"traceResolution": false,
"listEmittedFiles": false,
"listFiles": false,
"pretty": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"noImplicitOverride": true,
"lib": ["es2020"],
"types": [],
"typeRoots": ["node_modules/@types", "src/types"]
},
"include": ["src"],
"include": ["src/**/*.ts"],
"exclude": [
"node_modules",
"src/**/*.spec.ts",
"src/**/*.test.ts"
]
],
"compileOnSave": false
}

0 comments on commit 9482412

Please sign in to comment.