Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for TypeScript with 'none' for module config #137

Merged
merged 1 commit into from
Apr 1, 2024

Conversation

erikolofsson
Copy link
Contributor

Importing through "." engages the module machinery in TypeScript so it's not possible to import the types into a project with None module resolution.

Example import:

import * as ImportScim2ParseFilter from "../../node_modules/scim2-parse-filter/lib/src/index";

declare global {
	namespace Scim2ParseFilter {
		export type Filter = ImportScim2ParseFilter.Filter;
	}
	export type Scim2ParseFilter = typeof ImportScim2ParseFilter;
	const Scim2ParseFilter: Scim2ParseFilter;
}

export {};

Results in:

.../node_modules/scim2-parse-filter/lib/src/stringify.d.ts:1:24: Error TS2792: Cannot find module '.'. Did you mean to set the 'moduleResolution' option to 'nodenext', or to add aliases to the
   'paths' option?

This is fixed by importing explicitly from "./index" instead.

Copy link

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
No Duplication information No Duplication information

@thomaspoignant thomaspoignant merged commit c23a60a into thomaspoignant:master Apr 1, 2024
@thomaspoignant
Copy link
Owner

Hey @erikolofsson, sorry for the time it took me to review this.
I was super busy on other projects, but this is great, thanks a lot for your contribution 🙏

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants