TypeScript/tests/cases/compiler/moduleResolutionWithExtensions_notSupported.ts

14 lines
304 B
TypeScript
Raw Normal View History

// @noImplicitReferences: true
// @traceResolution: true
// @Filename: /tsx.tsx
// @Filename: /jsx.jsx
// @Filename: /js.js
// @Filename: /a.ts
import tsx from "./tsx"; // Not allowed.
import jsx from "./jsx"; // Not allowed.
import js from "./js"; // OK because it's an untyped module.