feat: Add typings for esm (#41293)

Signed-off-by: Richie Bendall <richiebendall@gmail.com>
This commit is contained in:
Richie Bendall
2020-01-07 17:04:32 -08:00
committed by Armando Aguirre
parent e816b95a87
commit c4d3560712
4 changed files with 59 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
import esm = require("esm");
esm(exports); // $ExpectType Require
+32
View File
@@ -0,0 +1,32 @@
// Type definitions for esm 3.2
// Project: https://github.com/standard-things/esm#readme
// Definitions by: Richie Bendall <https://github.com/Richienb>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <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;
+23
View File
@@ -0,0 +1,23 @@
{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"esm-tests.ts"
]
}
+1
View File
@@ -0,0 +1 @@
{ "extends": "dtslint/dt.json" }