mirror of
https://github.com/vitejs/vite.git
synced 2024-11-21 14:48:41 +00:00
13 lines
253 B
TypeScript
13 lines
253 B
TypeScript
// test complicated stack since broken sourcemap
|
|
// might still look correct with a simple case
|
|
function main() {
|
|
mainInner()
|
|
}
|
|
|
|
function mainInner() {
|
|
// @ts-expect-error "define"
|
|
console.trace('with-define-object', __testDefineObject)
|
|
}
|
|
|
|
main()
|