2.4.30 • Published 2 months ago

@hint/parser-typescript-config v2.4.30

Weekly downloads
4,286
License
Apache-2.0
Repository
github
Last release
2 months ago

TypeScript config (@hint/parser-typescript-config)

The typescript-config parser allows the user to analyze the TypeScript configuration in their projects.

It will detect if a TypeScript configuration file is present in your project, checking the name of the file (i.e. tsconfig.json, tsconfig.developement.json). This parser detects if a config file has a valid content.

This package is installed automatically by webhint:

npm install hint --save-dev

To use it, activate it via the .hintrc configuration file:

{
    "connector": {...},
    "formatters": [...],
    "hints": {
        ...
    },
    "parsers": ["typescript-config"],
    ...
}

Note: The recommended way of running webhint is as a devDependency of your project.

Events emitted

This parser emits the following events:

  • parse::start::typescript-config, of type TypeScriptConfigParseStart which contains the following information:

    • resource: the resource we are going to parse.
  • parse::end::typescript-config, of type TypeScriptConfigParse which contains the following information:

    • resource: the parsed resource.
    • getLocation: helper to find the location of a path within the original JSON source.
    • config: the final configuration after adding default values (TypeScriptConfig).
    • mergedConfig: the merged configuration after inlining extends.
    • originalConfig: the original configuration before resolving extends.
  • parse::error::typescript-config::json, of type TypeScriptConfigInvalidJSON which contains the following information:

    • resource: the parsed resource.
    • error: the error emited parsing the configuration file.
  • parse::error::typescript-config::cicular, of type TypeScriptConfigInvalidJSON which contains the following information:

    • resource: the parsed resource.
    • error: the error emited parsing the configuration file.
  • parse::error::typescript-config::extends, of type TypeScriptConfigInvalidJSON which contains the following information:

    • resource: the parsed resource.
    • error: the error emited parsing the configuration file.
  • parse::error::typescript-config::schema, of type TypeScriptConfigInvalidSchema which contains the following information:

    • resource: the parsed resource.
    • errors: all the errors that the schama validator returns.

Types

If you need to import any type or enum defined in this parser, you need to import them as follows:

import { TypeOrEnumYouWantToUse } from '@hint/parser-typescript-config';
2.4.30

2 months ago

2.4.29

11 months ago

2.4.28

11 months ago

2.4.27

1 year ago

2.4.26

2 years ago

2.4.25

2 years ago

2.4.24

2 years ago

2.4.23

2 years ago

2.4.22

2 years ago

2.4.21

2 years ago

2.4.20

2 years ago

2.4.18

2 years ago

2.4.19

2 years ago

2.4.17

2 years ago

2.4.16

2 years ago

2.4.15

3 years ago

2.4.14

3 years ago

2.4.13

3 years ago

2.4.12

3 years ago

2.4.11

3 years ago

2.4.10

3 years ago

2.4.9

4 years ago

2.4.8

4 years ago

2.4.7

4 years ago

2.4.6

4 years ago

2.4.5

4 years ago

2.4.4

4 years ago

2.4.3

4 years ago

2.4.2

4 years ago

2.4.1

4 years ago

2.4.0

5 years ago

2.3.10

5 years ago

2.3.9

5 years ago

2.3.8

5 years ago

2.3.7

5 years ago

2.3.6

5 years ago

2.3.5

5 years ago

2.3.4

5 years ago

2.3.3

5 years ago

2.3.2

5 years ago

2.3.1

5 years ago

2.3.0

5 years ago

2.2.2

5 years ago

2.2.1

5 years ago

2.2.0

5 years ago

2.1.2

5 years ago

2.1.1

5 years ago

2.1.0

5 years ago

2.0.0

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago

1.0.0-beta.0

6 years ago