Add new tests to validate relative import path fix

This commit is contained in:
Austin Chick
2025-12-22 08:18:43 -06:00
parent 0dc7ab69ec
commit 03e5dab416
4 changed files with 70 additions and 3 deletions

View File

@@ -1,7 +1,10 @@
{
"compilerOptions": {
"target": "ES2020",
"lib": ["ES2020", "DOM"],
"lib": [
"ES2020",
"DOM"
],
"module": "NodeNext",
"declaration": true,
"strict": true
@@ -17,6 +20,7 @@
"arrays_test_complex/**/*.ts",
"union_underlying_type_test.ts",
"long-namespace/**/*.ts",
"longer-namespace/**/*.ts"
"longer-namespace/**/*.ts",
"relative_imports/**/*.ts"
]
}
}