Files
Kmake/test/fixtures/source-map/output/source_map_throw_construct.mts
2026-05-26 23:36:42 -07:00

22 lines
404 B
TypeScript

// Flags: --enable-source-maps
import '../../../common/index.mjs';
interface Block {
/** line
*
* blocks */
}
class Foo {
constructor() {
throw new Error('message');
}
}
new Foo();
// To recreate:
//
// npx --package typescript tsc --module nodenext --target esnext --outDir test/fixtures/source-map/output --sourceMap test/fixtures/source-map/output/source_map_throw_construct.mts