Socket
Socket
Sign inDemoInstall

@types/webpack-sources

Package Overview
Dependencies
3
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/webpack-sources

TypeScript definitions for webpack-sources


Version published
Weekly downloads
3.8M
increased by8.21%
Maintainers
1
Install size
1.54 MB
Created
Weekly downloads
 

Package description

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

Readme

Source

Installation

npm install --save @types/webpack-sources

Summary

This package contains type definitions for webpack-sources (https://github.com/webpack/webpack-sources).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/webpack-sources/v0.

Additional Details

Credits

These definitions were written by e-cloud, and Chris Eppstein.

FAQs

Last updated on 02 Jul 2021

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc