Skip to content

Commit

Permalink
fix: ts issue in declaration file
Browse files Browse the repository at this point in the history
  • Loading branch information
mrrishimeena committed Jul 23, 2024
1 parent 80b8323 commit 2a84f2b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
26 changes: 13 additions & 13 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"compilerOptions": {
"target": "ES6", // Specify ECMAScript target version
"module": "commonjs", // Specify module code generation
"strict": true, // Enable all strict type-checking options
"esModuleInterop": true, // Enable esModuleInterop
"skipLibCheck": true, // Skip type checking of declaration files
"forceConsistentCasingInFileNames": true // Disallow inconsistently-cased references to the same file
},
"include": [
"lib/**/*", // Include all .js files in the lib folder
"types/**/*" // Include all .d.ts files in the types folder
]
}
"compilerOptions": {
"target": "ES6",
"module": "commonjs",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": [
"lib/**/*",
"types/**/*"
]
}

2 changes: 1 addition & 1 deletion types/errsole.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
declare module 'Errsole' {
declare module 'errsole' {
interface Options {
storage: any;
port?: number;
Expand Down

0 comments on commit 2a84f2b

Please sign in to comment.