Socket
Socket
Sign inDemoInstall

@types/webpack-sources

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/webpack-sources

TypeScript definitions for webpack-sources


Version published
Weekly downloads
3.7M
increased by4.27%
Maintainers
1
Weekly downloads
 
Created

What is @types/webpack-sources?

The @types/webpack-sources package provides TypeScript type definitions for the webpack-sources library, which is used in webpack to manage modules and their dependencies. This package helps developers by offering type safety and autocompletion features when working with webpack-sources in a TypeScript environment.

What are @types/webpack-sources's main functionalities?

Type Definitions for Source Manipulation

Provides TypeScript types for creating and manipulating source code in webpack. This example shows how to create a new RawSource object and retrieve its content.

import { Source, RawSource } from 'webpack-sources';

const source: Source = new RawSource('const x = 123;');
console.log(source.source());

Type Definitions for Source Map Handling

Enables handling of source maps with proper type definitions. This example demonstrates creating a SourceMapSource object with a source map.

import { SourceMapSource } from 'webpack-sources';

const source: SourceMapSource = new SourceMapSource('const x = 123;', 'x.js', '{"version":3,"sources":["source.js"],"names":["x"],"mappings":"AAAA"}');
console.log(source.map());

Other packages similar to @types/webpack-sources

FAQs

Package last updated on 18 Oct 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc