Closed
Description
Env
- TypeScript Version 2.1.0-dev.20161023
- with enable
--alwaysStrict
&--module=es2015
option
Code
Compile the below code with the above options.
export const a = 1;
Actual behavior
"use strict";
export var a = 1;
Expected behavior
I think "use strict"
declareation is needless for ES2015 module because "Module code is always strict mode code" by the spec.