/
githubmirror
/
deno
Обзор
Документация
Войти
/
githubmirror
/
deno
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/specs/check/various_node_errors/main.ts
7 строк
301 B
David Sherret
fix(tsc): move more node resolution errors to typescript diagnostics (#32697)
14 мар 2026, 16:19
Не верифицирован
14 мар 2026, 16:19
bfd9685
Код
Авторство
О чём код?
import * as test from "package/package.json"; import * as test2 from "#not-an-import"; import * as test3 from "#non-existent"; import * as test4 from "package2/dir"; // not allowed dir import import * as test5 from "package3"; // invalid package target console.log(test, test2, test3, test4, test5);