Fix CRLF issues in tests; Include common tsc options in asc bundle

This commit is contained in:
dcodeIO
2018-02-10 18:34:29 +01:00
parent 9678ce839e
commit 74f8189ac1
6 changed files with 116 additions and 121 deletions

View File

@ -553,3 +553,18 @@ function createMemoryStream(fn) {
}
exports.createMemoryStream = createMemoryStream;
exports.tscOptions = {
alwaysStrict: true,
noImplicitAny: true,
noImplicitReturns: true,
noImplicitThis: true,
noEmitOnError: true,
strictNullChecks: true,
experimentalDecorators: true,
target: "esnext",
module: "commonjs",
noLib: true,
types: [],
allowJs: false
};