TypeScript/tests/baselines/reference/nodeModulesForbidenSyntax(module=nodenext).js
Wesley Wigham 586b0d5011
moduleResolution: node12 support (#45884)
* Initial support for module: node12

* Add allowJs and declaration emit enabled tests

* Fix typos

* cts, mts, cjs, mjs, etc extension support

* Fix watch of files whose intepretation changes due to a package.json update

* Minor PR feedback

* Adjust error message

* Initial import/export/self-name support

* Accept new error codes

* TypesVersions support in export/import map conditions

* Fix import suggestion and autoimport default extensions under new resolution modes

* Add tests for import maps non-relative name lookup feature

* Fix isDeclarationFileName for .d.mts and .d.cts

* Preserve new extensions when generating module specifiers

* Fix spurious implict any suggestion caused by file ordering bug and optimize import name format detection by relying on parents being set

* Fix a bunch of incremental bugs that dont repro under fourslash for some reason

* Accept updated baseline

* Always include extensions on completions for cjs/mjs style imports

* String completion relative import suggestions respect the mode of the import when choosing if they provide extensions

* Style feedback

* Change diagnostic case
2021-09-24 14:25:59 -07:00

173 lines
3.6 KiB
TypeScript

//// [tests/cases/conformance/node/nodeModulesForbidenSyntax.ts] ////
//// [index.ts]
// cjs format file
const x = <T>() => <T><any>(void 0);
export {x};
//// [index.cts]
// cjs format file
const x = <T>() => <T><any>(void 0);
export {x};
//// [index.mts]
// esm format file
const x = <T>() => <T><any>(void 0);
export {x};
//// [index.ts]
// cjs format file
const x = <T>() => <T><any>(void 0);
export {x};
//// [index.cts]
// cjs format file
const x = <T>() => <T><any>(void 0);
export {x};
//// [index.mts]
// esm format file
const x = <T>() => <T><any>(void 0);
export {x};
//// [index.ts]
// esm format file
const x = <T>() => <T><any>(void 0);
export {x};
//// [index.mts]
// esm format file
const x = <T>() => <T><any>(void 0);
export {x};
//// [index.cts]
// cjs format file
const x = <T>() => <T><any>(void 0);
export {x};
//// [index.mts]
// esm format file
const x = <T>() => <T><any>(void 0);
export {x};
//// [index.cts]
// cjs format file
const x = <T>() => <T><any>(void 0);
export {x};
//// [index.ts]
// esm format file
const x = <T>() => <T><any>(void 0);
export {x};
//// [package.json]
{
"name": "package",
"private": true,
"type": "module"
}
//// [package.json]
{
"type": "commonjs"
}
//// [package.json]
{
}
//// [package.json]
{
"type": "module"
}
//// [index.js]
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.x = void 0;
// cjs format file
const x = () => (void 0);
exports.x = x;
//// [index.cjs]
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.x = void 0;
// cjs format file
const x = () => (void 0);
exports.x = x;
//// [index.mjs]
// esm format file
const x = () => (void 0);
export { x };
//// [index.js]
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.x = void 0;
// cjs format file
const x = () => (void 0);
exports.x = x;
//// [index.cjs]
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.x = void 0;
// cjs format file
const x = () => (void 0);
exports.x = x;
//// [index.mjs]
// esm format file
const x = () => (void 0);
export { x };
//// [index.js]
// esm format file
const x = () => (void 0);
export { x };
//// [index.mjs]
// esm format file
const x = () => (void 0);
export { x };
//// [index.cjs]
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.x = void 0;
// cjs format file
const x = () => (void 0);
exports.x = x;
//// [index.mjs]
// esm format file
const x = () => (void 0);
export { x };
//// [index.cjs]
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.x = void 0;
// cjs format file
const x = () => (void 0);
exports.x = x;
//// [index.js]
// esm format file
const x = () => (void 0);
export { x };
//// [index.d.ts]
declare const x: <T>() => T;
export { x };
//// [index.d.cts]
declare const x: <T>() => T;
export { x };
//// [index.d.mts]
declare const x: <T>() => T;
export { x };
//// [index.d.ts]
declare const x: <T>() => T;
export { x };
//// [index.d.cts]
declare const x: <T>() => T;
export { x };
//// [index.d.mts]
declare const x: <T>() => T;
export { x };
//// [index.d.ts]
declare const x: <T>() => T;
export { x };
//// [index.d.mts]
declare const x: <T>() => T;
export { x };
//// [index.d.cts]
declare const x: <T>() => T;
export { x };
//// [index.d.mts]
declare const x: <T>() => T;
export { x };
//// [index.d.cts]
declare const x: <T>() => T;
export { x };
//// [index.d.ts]
declare const x: <T>() => T;
export { x };