Skip to content

Commit df03535

Browse files
committed
remove tslib from tests and debug profile
1 parent 05a3683 commit df03535

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

.vscode/launch.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,6 @@
131131

132132
"skipFiles": [
133133
"<node_internals>/**",
134-
// this prevents us from landing in a neverending cycle of TS async-polyfill functions as we're stepping through
135-
// our code
136-
"${workspaceFolder}/node_modules/tslib/**/*"
137134
],
138135
"sourceMaps": true,
139136
// this controls which files are sourcemapped

packages/browser/test/package/npm-build.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,6 @@ function runTests() {
5252

5353
const myLibrary = fs.readFileSync(bundlePath, { encoding: 'utf-8' });
5454

55-
if (myLibrary.indexOf('tslib_1__default') !== -1) {
56-
console.log('"tslib_1__default" reappeared...');
57-
process.exit(1);
58-
}
59-
6055
const scriptEl = window.document.createElement('script');
6156
scriptEl.textContent = myLibrary;
6257
window.document.body.appendChild(scriptEl);

0 commit comments

Comments
 (0)