-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(bling.ts): add logic to prevent multiple instantiations of the s…
…ame entity
- Loading branch information
vitorsanc-beuni
committed
Oct 19, 2021
1 parent
ed37024
commit 4ec9211
Showing
2 changed files
with
20 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,18 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es5", | ||
"target": "es6", | ||
"module": "commonjs", | ||
"declaration": true, | ||
"outDir": "./lib", | ||
"strict": true, | ||
"esModuleInterop": true, | ||
"allowJs": true | ||
}, | ||
"include": ["src"], | ||
"exclude": ["node_modules", "test/*"] | ||
"include": [ | ||
"src" | ||
], | ||
"exclude": [ | ||
"node_modules", | ||
"test/*" | ||
] | ||
} |