3.0.7 • Published 2 months ago

@types/rollup-plugin-json v3.0.7

Weekly downloads
3,304
License
MIT
Repository
github
Last release
2 months ago

Installation

npm install --save @types/rollup-plugin-json

Summary

This package contains type definitions for rollup-plugin-json (https://github.com/rollup/rollup-plugin-json#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/rollup-plugin-json.

index.d.ts

// Type definitions for rollup-plugin-json 3.0
// Project: https://github.com/rollup/rollup-plugin-json#readme
// Definitions by: Andy Mockler <https://github.com/asmockler>
//                 Martin Hochel <https://github.com/hotell>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3

/// <reference types="node" />
import { Plugin } from 'rollup';

declare namespace json {
    interface Options {
        /**
         *  All JSON files will be parsed by default, but you can also specifically include/exclude files
         */
        include?: string | string[] | undefined;
        exclude?: string | string[] | undefined;
        /**
         *  for tree-shaking, properties will be declared as variables, using either `var` or `const`
         *  @default false
         */
        preferConst?: boolean | undefined;
        /**
         * specify indentation for the generated default export — defaults to '\t'
         * @default '\t'
         */
        indent?: string | undefined;
    }
}

declare function json(options?: json.Options): Plugin;
export = json;

Additional Details

Credits

These definitions were written by Andy Mockler, and Martin Hochel.

3.0.7

2 months ago

3.0.4

7 months ago

3.0.6

6 months ago

3.0.5

7 months ago

3.0.3

3 years ago

3.0.2

5 years ago

3.0.1

6 years ago

3.0.0

6 years ago

2.3.1

6 years ago

2.3.0

7 years ago