mirror of
https://github.com/fluencelabs/assemblyscript
synced 2025-06-22 11:11:43 +00:00
Fix CRLF issues in tests; Include common tsc options in asc bundle
This commit is contained in:
15
bin/asc.js
15
bin/asc.js
@ -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
|
||||
};
|
||||
|
Reference in New Issue
Block a user