a.ts ``` typescript export var c = ''; ``` b.ts ``` typescript import a = require('./a'); ``` tsconfig.json ``` json { "files": [ "./a.ts", "./b.ts" ] } ``` ``` node ./node_modules/typescript/lib/tsc.js --outDir ./commonjs --module commonjs --target es5 --declaration --noResolve --noEmitOnError --noImplicitAny ``` gives: ``` b.ts(1,20): error TS2307: Cannot find module './a'. ```