<script type="module"> import typesesm from 'https://cdn.jsdelivr.net/npm/@types/esm@3.2.2/+esm' </script>
Installation
npm install --save @types/esm
Summary
This package contains type definitions for esm (https://github.com/standard-things/esm#readme).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/esm.
index.d.ts
/// <reference types="node"/>
declare namespace Options {
interface Esm {
cache: boolean;
esModule: boolean;
extensions: boolean;
mutableNamespace: boolean;
namedExports: boolean;
paths: boolean;
vars: boolean;
dedefault: boolean;
topLevelReturn: boolean;
}
interface Options {
cjs: boolean | Partial<Esm>;
mainFields: string[];
mode: "auto" | "all" | "strict";
await: boolean;
force: boolean;
wasm: boolean;
}
}
declare function esm(mod: typeof module, options?: Partial<Options.Options>): typeof require;
export = esm;
Additional Details
- Last updated: Mon, 06 Nov 2023 22:41:05 GMT
- Dependencies: @types/node
Credits
These definitions were written by Richie Bendall.