aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/worker-typescript.js
blob: 7bbf0c23147c72915e6091005e4b69a7398c81d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
importScripts('../../dist/system.src.js');

System.paths['typescript'] = '../../node_modules/typescript/lib/typescript.js';
System.meta['typescript'] = { format: 'global', exports: 'ts' };
System.transpiler = 'typescript';

System.normalizeSync('test');

System.import('es6-and-amd.js').then(function(m) {
  postMessage({
    amd: m.amd_module,
    es6: m.es6_module
  });
}, function(err) {
  console.error(err);
});