mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-06-16 06:59:15 -05:00
Use explicit extensions for imports within src (#58421)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/* Generated file to emulate the ts namespace. */
|
||||
|
||||
export * from "../../compiler/_namespaces/ts";
|
||||
export * from "../deprecations";
|
||||
export * from "../../compiler/_namespaces/ts.js";
|
||||
export * from "../deprecations.js";
|
||||
|
||||
@@ -5,7 +5,7 @@ import {
|
||||
noop,
|
||||
Version,
|
||||
version,
|
||||
} from "./_namespaces/ts";
|
||||
} from "./_namespaces/ts.js";
|
||||
|
||||
export let enableDeprecationWarnings = true;
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@ import {
|
||||
hasProperty,
|
||||
UnionToIntersection,
|
||||
Version,
|
||||
} from "./_namespaces/ts";
|
||||
import { deprecate } from "./deprecate";
|
||||
} from "./_namespaces/ts.js";
|
||||
import { deprecate } from "./deprecate.js";
|
||||
|
||||
/** @internal */
|
||||
export interface DeprecationOptions {
|
||||
|
||||
Reference in New Issue
Block a user