-
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
5 changed files
with
460 additions
and
192 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
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
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,19 +1,19 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es2016" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */, | ||
"emitDeclarationOnly": true, | ||
"target": "ES6", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */ | ||
"declaration": true, | ||
"moduleResolution": "node", | ||
|
||
/* Modules */ | ||
"module": "commonjs" /* Specify what module code is generated. */, | ||
"outDir": "./dist", | ||
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */, | ||
|
||
"module": "ES6", /* Specify what module code is generated. */ | ||
"outDir": "./dist/esm", | ||
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */ | ||
"isolatedModules": true, | ||
/* Type Checking */ | ||
"strict": true /* Enable all strict type-checking options. */, | ||
"noImplicitAny": false /* Enable error reporting for expressions and declarations with an implied `any` type.. */, | ||
"strict": true, /* Enable all strict type-checking options. */ | ||
"noImplicitAny": false, /* Enable error reporting for expressions and declarations with an implied `any` type.. */ | ||
"skipLibCheck": true /* Skip type checking all .d.ts files. */ | ||
}, | ||
"include": ["./src/**/*"], | ||
"include": ["./src/**/*.ts"], | ||
"exclude": ["./node_modules", "./dist"] | ||
} |
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
Oops, something went wrong.