-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
80b8323
commit 2a84f2b
Showing
2 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/**/*" | ||
] | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
|