TypeScript/tests/baselines/reference/sourceMapWithNonCaseSensitiveFileNamesAndOutDir.types

12 lines
394 B
Plaintext
Raw Normal View History

2014-10-06 20:37:08 +02:00
=== tests/cases/compiler/testFiles/app.ts ===
// Note in the out result we are using same folder name only different in casing
// Since this is non case sensitive, the relative paths should be just app.ts and app2.ts in the sourcemap
class c {
2015-04-13 23:01:57 +02:00
>c : c, Symbol(c, Decl(app.ts, 0, 0))
2014-10-06 20:37:08 +02:00
}
=== tests/cases/compiler/testFiles/app2.ts ===
class d {
2015-04-13 23:01:57 +02:00
>d : d, Symbol(d, Decl(app2.ts, 0, 0))
2014-10-06 20:37:08 +02:00
}