canirequire

canirequireCommonJS › tslint-react

Is tslint-react ESM-only? Can you require() it?

Lint rules related to React & JSX for TSLint

Last verified Sep 9, 2026 against tslint-react@5.0.0. JSON

CommonJS CommonJS — require() works on every Node.js version

tslint-react ships CommonJS only. require("tslint-react") works everywhere. import "tslint-react" also works because Node.js and Bun can import CommonJS from ES modules, but only the default export is guaranteed; named imports depend on Node's static analysis of the module.

Latest
5.0.0 (Apr 22, 2020)
Module format
CommonJS
Last CommonJS version
5.0.0
TypeScript types
None
Node engines
not declared
Weekly downloads
106K
License
Apache-2.0

Deprecated: tslint-react is deprecated along with TSLint

Does tslint-react@5.0.0 actually load? Runtime test results

Installed and executed on Sep 9, 2026 with require("tslint-react") from a CommonJS file and import "tslint-react" from an ES module.

Runtimerequire("tslint-react")import "tslint-react"
Node.js 18✓ works✗ failsERR_IMPORT_ASSERTION_TYPE_MISSING
Node.js 20✓ works✗ failsERR_IMPORT_ASSERTION_TYPE_MISSING
Node.js 22✓ works✗ failsERR_IMPORT_ATTRIBUTE_MISSING
Node.js 24✓ works✗ failsERR_IMPORT_ATTRIBUTE_MISSING
Node.js 26✓ works✗ failsERR_IMPORT_ATTRIBUTE_MISSING
Bun 1.4✓ works✓ works

How to import tslint-react

ES modules (import)

import tslintReact from "tslint-react";

Named imports from a CommonJS package only work when Node.js can statically detect them. If a named import fails, use the default import and destructure.

CommonJS (require)

const tslintReact = require("tslint-react");

Module format by version

Derived from the type, main and exports fields of every stable release on npm (29 versions; the newest 29 shown).

VersionsFormatFirst published
0.1.0 – 5.0.0CommonJSJun 16, 2016

Frequently asked

Is tslint-react ESM-only?

tslint-react@5.0.0 is a CommonJS package. tslint-react ships CommonJS only. require("tslint-react") works everywhere. import "tslint-react" also works because Node.js and Bun can import CommonJS from ES modules, but only the default export is guaranteed; named imports depend on Node's static analysis of the module.

Can I import tslint-react with ES module syntax?

Yes. import tslintReact from "tslint-react" works in Node.js and Bun because they support importing CommonJS modules. Named imports work only when Node.js can statically detect the exports.

Does tslint-react work in Bun?

Yes. import "tslint-react" loaded successfully in Bun 1.4 on Sep 9, 2026.

Does tslint-react ship TypeScript types?

No. tslint-react ships no type declarations and there is no @types package for it.

Links

Other commonjs packages

Similar popularity