1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
=== /src/a.ts ===
No type information for this code.export default 0;
No type information for this code.
No type information for this code.// No extension: '.ts' added
No type information for this code.=== /src/b.ts ===
import a from './a';
>a : 0
// '.js' extension: stripped and replaced with '.ts'
=== /src/d.ts ===
import a from './a.js';
>a : 0
=== /src/jquery.d.ts ===
declare var x: number;
>x : number
export default x;
>x : number
// No extension: '.d.ts' added
=== /src/jquery_user_1.ts ===
import j from "./jquery";
>j : number
// '.js' extension: stripped and replaced with '.d.ts'
=== /src/jquery_user_1.ts ===
import j from "./jquery.js"
>j : number
>j : number
|