##### error message when run `tsc` > error TS2450: Left-hand side of assignment expression cannot be a constant or a read-only property. ##### a.ts ``` typescript export let value = 1; ``` ##### b.ts ``` typescript import * as a from "./a"; function load() { a.value = 2; } ``` ##### tsconfig.json ``` json { "compilerOptions": { "target": "es5", "module": "commonjs" } } ``` ###### environment ``` bash >tsc -v Version 1.9.0-dev.20160129 ```