1
0
Fork 0
mirror of https://github.com/demostf/demo.js synced 2026-06-04 09:04:13 +02:00

export es6 code

This commit is contained in:
Robin Appelman 2017-02-16 22:47:20 +01:00
commit c2e79f552a
2 changed files with 6 additions and 5 deletions

View file

@ -1,7 +1,7 @@
import {Match} from "./Data/Match";
import {BitStream} from 'bit-buffer';
import {Parser, MessageType} from './Parser';
import {Stream} from "stream";
import {Buffer} from 'buffer';
export class StreamParser extends Parser {
buffer: Buffer;

View file

@ -3,14 +3,15 @@
"lib": [
"dom",
"es2015.promise",
"es5"
"es6"
],
"module": "commonjs",
"target": "ES5",
"module": "ES6",
"target": "ES6",
"outDir": "build",
"rootDir": "src",
"declaration": true,
"strictNullChecks": true,
"sourceMap": true
"sourceMap": true,
"moduleResolution": "node"
}
}