@mrgrain/cdk-esbuild 3.0.0 → 3.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gitattributes +22 -21
- package/.jsii +128 -85
- package/.projenrc.ts +40 -32
- package/API.md +20 -0
- package/CHANGELOG.md +4 -362
- package/LICENSE +1 -1
- package/README.md +16 -10
- package/lib/asset.js +2 -2
- package/lib/bundler.js +2 -2
- package/lib/code.js +2 -2
- package/lib/esbuild-types.d.ts +50 -0
- package/lib/esbuild-types.js +1 -1
- package/lib/inline-code.js +4 -4
- package/lib/source.js +2 -2
- package/package.json +28 -25
- package/projenrc/TypeScriptSourceFile.ts +1 -1
- package/releasetag.txt +1 -0
- package/version.txt +1 -0
package/.jsii
CHANGED
|
@@ -2777,7 +2777,7 @@
|
|
|
2777
2777
|
"stability": "stable"
|
|
2778
2778
|
},
|
|
2779
2779
|
"homepage": "https://github.com/mrgrain/cdk-esbuild",
|
|
2780
|
-
"jsiiVersion": "1.
|
|
2780
|
+
"jsiiVersion": "1.52.1 (build 5ccc8f6)",
|
|
2781
2781
|
"keywords": [
|
|
2782
2782
|
"aws-cdk",
|
|
2783
2783
|
"bundler",
|
|
@@ -2795,11 +2795,12 @@
|
|
|
2795
2795
|
"pacmak": {
|
|
2796
2796
|
"hasDefaultInterfaces": true
|
|
2797
2797
|
}
|
|
2798
|
-
}
|
|
2798
|
+
},
|
|
2799
|
+
"tscRootDir": "src"
|
|
2799
2800
|
},
|
|
2800
2801
|
"name": "@mrgrain/cdk-esbuild",
|
|
2801
2802
|
"readme": {
|
|
2802
|
-
"markdown": "# cdk-esbuild\n\n_CDK constructs for [esbuild](https://github.com/evanw/esbuild), an extremely fast JavaScript bundler_\n\n> ⚠️ This is the documentation for the version compatible with AWS CDK v2. For the previous, AWS CDK v1 compatible release, see [cdk-esbuild@v2](https://github.com/mrgrain/cdk-esbuild/tree/v2)\n\n[Getting started](#getting-started) | [Migrating to v3](#migrating-to-v3) |\n[Documentation](#documentation) | [API Reference](#api-reference) | [Versioning](#versioning)\n\n## Why?\n\n_esbuild_ is an extremely fast bundler and minifier for Typescript and JavaScript.\nThis package makes _esbuild_ available to deploy lambda functions, static websites or to publish build artefacts (assets) for further use.\n\nAWS CDK [supports _esbuild_ with Lambda Functions](https://docs.aws.amazon.com/cdk/api/latest/docs/aws-lambda-nodejs-readme.html). However the implementation cannot be used with any other Constructs and doesn't expose all of _esbuild_'s build interface.\n\nThis package is running _esbuild_ directly in Node.js and bypasses Docker which the AWS CDK implementation uses. The approach is quicker and easier to use for Node.js users, but incompatible with other languages.\n\n**Production readiness**\n\nThis package is generally stable and ready to be used in production, as many do. However _esbuild_ not yet released a version 1.0.0 yet and its API is still in active development. Please check their guide on [production readiness](https://esbuild.github.io/faq/#production-readiness).\n\nNotably upgrades of the _esbuild_ minimum version requirement will be introduced in **minor versions** of this package and will inherit breaking changes from _esbuild_.\n\n## Getting started\n\nInstall `cdk-esbuild`:\n\n```\nnpm install @mrgrain/cdk-esbuild@^3.0.0\n```\n\nIf _peer_ and _optional dependencies_ are not installed automatically (e.g. when using npm v4-6), please use this command to install all of them:\n\n```\nnpm install @mrgrain/cdk-esbuild@^3.0.0 esbuild\n```\n\n### AWS Lambda: Serverless function\n\n> 💡 See [Lambda Function](examples/lambda) for a complete working example of a how to deploy a lambda function.\n\nUse `TypeScriptCode` as the `code` of a [lambda function](https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_aws-lambda.Function.html#code):\n\n```ts\nimport * as lambda from \"@aws-cdk/aws-lambda\";\nimport { TypeScriptCode } from \"@mrgrain/cdk-esbuild\";\n\nconst bundledCode = new TypeScriptCode(\"src/index.ts\");\n\nconst fn = new lambda.Function(stack, \"MyFunction\", {\n runtime: lambda.Runtime.NODEJS_14_X,\n handler: \"index.handler\",\n code: bundledCode,\n});\n```\n\n### AWS S3: Static Website\n\n> 💡 See [Static Website with React](examples/website) for a complete working example of a how to deploy a React app to S3.\n\nUse `TypeScriptSource` as one of the `sources` of a [static website deployment](https://docs.aws.amazon.com/cdk/api/latest/docs/aws-s3-deployment-readme.html#roadmap):\n\n```ts\nimport * as s3 from \"@aws-cdk/aws-s3\";\nimport * as s3deploy from \"@aws-cdk/aws-s3-deployment\";\nimport { TypeScriptSource } from \"@mrgrain/cdk-esbuild\";\n\nconst websiteBundle = new TypeScriptSource(\"src/index.tsx\");\n\nconst websiteBucket = new s3.Bucket(stack, \"WebsiteBucket\", {\n autoDeleteObjects: true,\n publicReadAccess: true,\n removalPolicy: RemovalPolicy.DESTROY,\n websiteIndexDocument: \"index.html\",\n});\n\nnew s3deploy.BucketDeployment(stack, \"DeployWebsite\", {\n destinationBucket: websiteBucket,\n sources: [websiteBundle],\n});\n```\n\n### Amazon CloudWatch Synthetics: Canary monitoring\n\n> 💡 See [Monitored Website](examples/website) for a complete working example of a deployed and monitored website.\n\nSynthetics runs a canary to produce traffic to an application for monitoring purposes. Use `TypeScriptCode` as the `code` of a Canary test:\n\n```ts\nimport * as synthetics from \"@aws-cdk/aws-synthetics\";\nimport { TypeScriptCode } from \"@mrgrain/cdk-esbuild\";\n\nconst bundledCode = new TypeScriptCode(\"src/index.ts\", {\n buildOptions: {\n outdir: \"nodejs/node_modules\", // This is required by Synthetics\n },\n});\n\nconst canary = new synthetics.Canary(stack, \"MyCanary\", {\n runtime: synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_3_2,\n test: synthetics.Test.custom({\n code: bundledCode,\n handler: \"index.handler\",\n });\n});\n```\n\n# Documentation\n\nThe package exports various different constructs for use with existing CDK features. A major guiding design principal for this package is to _extend, don't replace_. Expect constructs that you can provide as props, not complete replacements.\n\nFor use in **Lambda Functions** and **Synthetic Canaries**, the following classes implement `lambda.Code` ([reference](https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_aws-lambda.Code.html)) and `synthetics.Code` ([reference](https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_aws-synthetics.Code.html)):\n\n- `TypeScriptCode` & `JavaScriptCode`\n\nInline code is only supported by **Lambda**:\n\n- `InlineTypeScriptCode` & `InlineJavaScriptCode`\n- `InlineTsxCode` & `InlineJsxCode`\n\nFor use with **S3 bucket deployments**, classes implementing `s3deploy.ISource` ([reference](https://docs.aws.amazon.com/cdk/api/latest/docs/aws-s3-deployment-readme.html)):\n\n- 🧺 `TypeScriptSource` & `JavaScriptSource`\n\n> _Code and Source constructs seamlessly plugin to high-level CDK features. They share the same set of parameters, props and build options._\n\nUnderlying classes power the other features. You normally won't have to use them, but they are there if you need them:\n\n- `TypeScriptAsset` & `JavaScriptAsset` implements `s3.Asset` ([reference](https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_aws-s3-assets.Asset.html)) \\\n creates an asset uploaded to S3 which can be referenced by other constructs\n\n- `EsbuildBundler` implements `core.BundlingOptions` ([reference](https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_core.BundlingOptions.html)) \\\n provides an interface for a _esbuild_ bundler wherever needed\n\n## [API Reference](API.md)\n\nAuto-generated reference for classes and structs. This information is also available within the code completion of your IDE.\n\n## Escape hatches\n\nIt's possible that you want to use a implementation of esbuild that's different to the default one. Common reasons are:\n\n- The current version constraints for esbuild are not suitable\n- To use version of esbuild that is installed by any other means than `npm`, including Docker\n- Plugin support is needed for the building\n\nFor these situations, this package offers an escape hatch to bypass regular the implementation and provide a custom build and transform function.\n\n### Custom build function\n\n> 💡 See [Using esbuild with plugins](examples/esbuild-with-plugins) for a complete working example of a custom build function using this escape hatch.\n\nConstructs that result in starting a build, take a `buildFn` as optional prop. While the defined type for this function is `any`, it must implement the same signature as esbuild's `buildSync` function.\n\n```ts\nnew TypeScriptCode(\"fixtures/handlers/ts-handler.ts\", {\n buildFn: (options: BuildOptions): BuildResult => {\n try {\n // custom implementation returning BuildResult\n } catch (error) {\n // throw BuildFailure exception here\n }\n },\n});\n```\n\nInstead of esbuild, the provided function will be invoked with the calculated build options. The custom build function can amend, change or discard any of these. However integration with CDK relies heavily on the values `outdir`/`outfile` are set to and it's usually required to use them unchanged.\n\nFailures have to cause a `BuildFailure` exception in order to be fully handled.\n\n### Custom transform function\n\nConstructs that result in starting a transformation, take a `transformFn` as optional prop. While the defined type for this function is `any`, it must implement the same signature as esbuild's `transformSync` function.\n\n```ts\nnew InlineTypeScriptCode(\"let x: number = 1\", {\n transformFn: (options: TransformOptions): TransformResult => {\n try {\n // custom implementation returning TransformResult\n } catch (error) {\n // throw TransformFailure exception here\n }\n },,\n});\n```\n\nInstead of esbuild, the provided function will be invoked with the calculated transform options. The custom transform function can amend, change or discard any of these.\n\nFailures have to cause a `TransformFailure` exception in order to be fully handled.\n\n## Migrating to v3\n\nThe release of cdk-esbuild v3 brings compatibility with AWS CDK v2. Furthermore all deprecated properties and classes have been removed. In particular `InlineCode` classes now take `TransformerProps` as second parameter instead of transform options.\n\n### Upgrading\n\n- This version requires AWS CDK v2. Follow the [official migration guide](https://docs.aws.amazon.com/cdk/latest/guide/work-with-cdk-v2.html) to upgrade.\n- Update the package dependency to v3: `npm install --save @mrgrain/cdk-esbuild@^3.0.0`\n- `esbuild` is installed as an optional dependency. If your setup does not automatically install optional dependencies, make sure to add it as an explicit dependency.\n- Any use of `InlineCode` variations has to be updated. Previously the second parameter was either of type `TransformerProps` or `TransformOptions`. Now it must be `TransformerProps`.\\\n If the passed value is of type `TransformOptions`, turn it into the correct type like this:\n\n ```ts\n const oldOptions: TransformOptions = {...}\n\n new InlineTypeScriptCode('// inline code', {\n transformOptions: oldOptions\n });\n ```\n\n## Versioning\n\nThis package _mostly_ follows [Semantic Versioning](https://semver.org/), with the exception of upgrades to `esbuild`. These will be released as **minor versions** and often include breaking changes from `esbuild`.\n\n### Npm Tags\n\nSome users prefer to use tags over version ranges. The following stable tags are available for use:\n\n- `cdk-v1`, `cdk-v2` are provided for the latest release compatible with each version of the AWS CDK.\n\n- `latest` is the most recent stable release.\n\nThese tags also exist, but usage is strongly not recommended:\n\n- `unstable`, `next` are used for pre-release of the current and next major version respectively.\n\n- ~~`cdk-1.x.x`~~ tags have been deprecated in favour of `cdk-v1`. Use that one instead.\n\n## Future releases\n\n### Stable esbuild\n\nOnce `esbuild` has reached a stable version 1.0, a new major version will be released for _all_ breaking changes, including updates to minimum (peer) dependencies.\n\n## Library authors\n\nWhen developing a library consumed by other packages, you'll most likely have to set `buildOptions.absWorkingDir`. The easiest way to do this, is to resolve based on the directory name of the file, and traverse the tree upwards to the root of your library package (that's where `package.json` and `tsconfig.json` are):\n\n```ts\n// file: project/src/index.ts\nconst props = {\n buildOptions: {\n absWorkingDir: path.resolve(__dirname, \"..\"), // now: /user/project\n },\n};\n```\n\nThis will dynamically resolve to the correct path, wherever the package is installed.\n"
|
|
2803
|
+
"markdown": "# cdk-esbuild\n\n_CDK constructs for [esbuild](https://github.com/evanw/esbuild), an extremely fast JavaScript bundler_\n\n> ⚠️ This version is compatible with AWS CDK v2. For the previous, AWS CDK v1 compatible release, see [cdk-esbuild@v2](https://github.com/mrgrain/cdk-esbuild/tree/v2)\n\n[Getting started](#getting-started) | [Migrating to v3](#migrating-to-v3) |\n[Documentation](#documentation) | [API Reference](#api-reference) | [Versioning](#versioning)\n\n## Why?\n\n_esbuild_ is an extremely fast bundler and minifier for Typescript and JavaScript.\nThis package makes _esbuild_ available to deploy lambda functions, static websites or to publish build artefacts (assets) for further use.\n\nAWS CDK [supports _esbuild_ with Lambda Functions](https://docs.aws.amazon.com/cdk/api/latest/docs/aws-lambda-nodejs-readme.html). However the implementation cannot be used with any other Constructs and doesn't expose all of _esbuild_'s build interface.\n\nThis package is running _esbuild_ directly in Node.js and bypasses Docker which the AWS CDK implementation uses. The approach is quicker and easier to use for Node.js users, but incompatible with other languages.\n\n**Production readiness**\n\nThis package is generally stable and ready to be used in production, as many do. However _esbuild_ not yet released a version 1.0.0 yet and its API is still in active development. Please check their guide on [production readiness](https://esbuild.github.io/faq/#production-readiness).\n\nNotably upgrades of the _esbuild_ minimum version requirement will be introduced in **minor versions** of this package and will inherit breaking changes from _esbuild_.\n\n## Getting started\n\nInstall `cdk-esbuild`:\n\n```\nnpm install @mrgrain/cdk-esbuild@^3.0.0\n```\n\nIf _peer_ and _optional dependencies_ are not installed automatically (e.g. when using npm v4-6), please use this command to install all of them:\n\n```\nnpm install @mrgrain/cdk-esbuild@^3.0.0 esbuild\n```\n\n### AWS Lambda: Serverless function\n\n> 💡 See [Lambda Function](examples/lambda) for a complete working example of a how to deploy a lambda function.\n\nUse `TypeScriptCode` as the `code` of a [lambda function](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_lambda.Function.html#code):\n\n```ts\nimport * as lambda from \"aws-cdk-lib/aws-lambda\";\nimport { TypeScriptCode } from \"@mrgrain/cdk-esbuild\";\n\nconst bundledCode = new TypeScriptCode(\"src/index.ts\");\n\nconst fn = new lambda.Function(stack, \"MyFunction\", {\n runtime: lambda.Runtime.NODEJS_14_X,\n handler: \"index.handler\",\n code: bundledCode,\n});\n```\n\n### AWS S3: Static Website\n\n> 💡 See [Static Website with React](examples/website) for a complete working example of a how to deploy a React app to S3.\n\nUse `TypeScriptSource` as one of the `sources` of a [static website deployment](https://docs.aws.amazon.com/cdk/api/latest/docs/aws-s3-deployment-readme.html#roadmap):\n\n```ts\nimport * as s3 from \"aws-cdk-lib/aws-s3\";\nimport * as s3deploy from \"aws-cdk-lib/aws-s3-deployment\";\nimport { TypeScriptSource } from \"@mrgrain/cdk-esbuild\";\n\nconst websiteBundle = new TypeScriptSource(\"src/index.tsx\");\n\nconst websiteBucket = new s3.Bucket(stack, \"WebsiteBucket\", {\n autoDeleteObjects: true,\n publicReadAccess: true,\n removalPolicy: RemovalPolicy.DESTROY,\n websiteIndexDocument: \"index.html\",\n});\n\nnew s3deploy.BucketDeployment(stack, \"DeployWebsite\", {\n destinationBucket: websiteBucket,\n sources: [websiteBundle],\n});\n```\n\n### Amazon CloudWatch Synthetics: Canary monitoring\n\n> 💡 See [Monitored Website](examples/website) for a complete working example of a deployed and monitored website.\n\nSynthetics runs a canary to produce traffic to an application for monitoring purposes. Use `TypeScriptCode` as the `code` of a Canary test:\n\n> ℹ️ This feature depends on the `@aws-cdk/aws-synthetics-alpha` package which is a developer preview. You may need to update your source code when upgrading to a newer version of this package.\n>\n> ```\n> npm i @aws-cdk/aws-synthetics-alpha\n> ```\n\n```ts\nimport * as synthetics from \"@aws-cdk/aws-synthetics-alpha\";\nimport { TypeScriptCode } from \"@mrgrain/cdk-esbuild\";\n\nconst bundledCode = new TypeScriptCode(\"src/index.ts\", {\n buildOptions: {\n outdir: \"nodejs/node_modules\", // This is required by Synthetics\n },\n});\n\nconst canary = new synthetics.Canary(stack, \"MyCanary\", {\n runtime: synthetics.Runtime.SYNTHETICS_NODEJS_PUPPETEER_3_2,\n test: synthetics.Test.custom({\n code: bundledCode,\n handler: \"index.handler\",\n });\n});\n```\n\n# Documentation\n\nThe package exports various different constructs for use with existing CDK features. A major guiding design principal for this package is to _extend, don't replace_. Expect constructs that you can provide as props, not complete replacements.\n\nFor use in **Lambda Functions** and **Synthetic Canaries**, the following classes implement `lambda.Code` ([reference](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_lambda.Code.html)) and `synthetics.Code` ([reference](https://docs.aws.amazon.com/cdk/api/v2/docs/@aws-cdk_aws-synthetics-alpha.Code.html)):\n\n- `TypeScriptCode` & `JavaScriptCode`\n\nInline code is only supported by **Lambda**:\n\n- `InlineTypeScriptCode` & `InlineJavaScriptCode`\n- `InlineTsxCode` & `InlineJsxCode`\n\nFor use with **S3 bucket deployments**, classes implementing `s3deploy.ISource` ([reference](https://docs.aws.amazon.com/cdk/api/latest/docs/aws-s3-deployment-readme.html)):\n\n- `TypeScriptSource` & `JavaScriptSource`\n\n> _Code and Source constructs seamlessly plugin to high-level CDK features. They share the same set of parameters, props and build options._\n\nUnderlying classes power the other features. You normally won't have to use them, but they are there if you need them:\n\n- `TypeScriptAsset` & `JavaScriptAsset` implements `s3.Asset` ([reference](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_s3_assets.Asset.html)) \\\n creates an asset uploaded to S3 which can be referenced by other constructs\n\n- `EsbuildBundler` implements `core.BundlingOptions` ([reference](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.BundlingOptions.html)) \\\n provides an interface for a _esbuild_ bundler wherever needed\n\n## [API Reference](API.md)\n\nAuto-generated reference for classes and structs. This information is also available within the code completion of your IDE.\n\n## Escape hatches\n\nIt's possible that you want to use a implementation of esbuild that's different to the default one. Common reasons are:\n\n- The current version constraints for esbuild are not suitable\n- To use version of esbuild that is installed by any other means than `npm`, including Docker\n- Plugin support is needed for the building\n\nFor these situations, this package offers an escape hatch to bypass regular the implementation and provide a custom build and transform function.\n\n### Custom build function\n\n> 💡 See [Using esbuild with plugins](examples/esbuild-with-plugins) for a complete working example of a custom build function using this escape hatch.\n\nConstructs that result in starting a build, take a `buildFn` as optional prop. While the defined type for this function is `any`, it must implement the same signature as esbuild's `buildSync` function.\n\n```ts\nnew TypeScriptCode(\"fixtures/handlers/ts-handler.ts\", {\n buildFn: (options: BuildOptions): BuildResult => {\n try {\n // custom implementation returning BuildResult\n } catch (error) {\n // throw BuildFailure exception here\n }\n },\n});\n```\n\nInstead of esbuild, the provided function will be invoked with the calculated build options. The custom build function can amend, change or discard any of these. However integration with CDK relies heavily on the values `outdir`/`outfile` are set to and it's usually required to use them unchanged.\n\nFailures have to cause a `BuildFailure` exception in order to be fully handled.\n\n### Custom transform function\n\nConstructs that result in starting a transformation, take a `transformFn` as optional prop. While the defined type for this function is `any`, it must implement the same signature as esbuild's `transformSync` function.\n\n```ts\nnew InlineTypeScriptCode(\"let x: number = 1\", {\n transformFn: (options: TransformOptions): TransformResult => {\n try {\n // custom implementation returning TransformResult\n } catch (error) {\n // throw TransformFailure exception here\n }\n },,\n});\n```\n\nInstead of esbuild, the provided function will be invoked with the calculated transform options. The custom transform function can amend, change or discard any of these.\n\nFailures have to cause a `TransformFailure` exception in order to be fully handled.\n\n## Migrating to v3\n\nThe release of cdk-esbuild v3 brings compatibility with AWS CDK v2. Furthermore all deprecated properties and classes have been removed. In particular `InlineCode` classes now take `TransformerProps` as second parameter instead of transform options.\n\n### Upgrading\n\n- This version requires AWS CDK v2. Follow the [official migration guide](https://docs.aws.amazon.com/cdk/latest/guide/work-with-cdk-v2.html) to upgrade.\n- Update the package dependency to v3: `npm install --save @mrgrain/cdk-esbuild@^3.0.0`\n- `esbuild` is installed as an optional dependency. If your setup does not automatically install optional dependencies, make sure to add it as an explicit dependency.\n- Any use of `InlineCode` variations has to be updated. Previously the second parameter was either of type `TransformerProps` or `TransformOptions`. Now it must be `TransformerProps`.\\\n If the passed value is of type `TransformOptions`, turn it into the correct type like this:\n\n ```ts\n const oldOptions: TransformOptions = {...}\n\n new InlineTypeScriptCode('// inline code', {\n transformOptions: oldOptions\n });\n ```\n\n## Versioning\n\nThis package _mostly_ follows [Semantic Versioning](https://semver.org/), with the exception of upgrades to `esbuild`. These will be released as **minor versions** and often include breaking changes from `esbuild`.\n\n### Npm Tags\n\nSome users prefer to use tags over version ranges. The following stable tags are available for use:\n\n- `cdk-v1`, `cdk-v2` are provided for the latest release compatible with each version of the AWS CDK.\n\n- `latest` is the most recent stable release.\n\nThese tags also exist, but usage is strongly not recommended:\n\n- `unstable`, `next` are used for pre-release of the current and next major version respectively.\n\n- ~~`cdk-1.x.x`~~ tags have been deprecated in favour of `cdk-v1`. Use that one instead.\n\n## Future releases\n\n### Stable esbuild\n\nOnce `esbuild` has reached a stable version 1.0, a new major version will be released for _all_ breaking changes, including updates to minimum (peer) dependencies.\n\n## Library authors\n\nWhen developing a library consumed by other packages, you'll most likely have to set `buildOptions.absWorkingDir`. The easiest way to do this, is to resolve based on the directory name of the file, and traverse the tree upwards to the root of your library package (that's where `package.json` and `tsconfig.json` are):\n\n```ts\n// file: project/src/index.ts\nconst props = {\n buildOptions: {\n absWorkingDir: path.resolve(__dirname, \"..\"), // now: /user/project\n },\n};\n```\n\nThis will dynamically resolve to the correct path, wherever the package is installed.\n"
|
|
2803
2804
|
},
|
|
2804
2805
|
"repository": {
|
|
2805
2806
|
"type": "git",
|
|
@@ -2899,7 +2900,7 @@
|
|
|
2899
2900
|
"kind": "interface",
|
|
2900
2901
|
"locationInModule": {
|
|
2901
2902
|
"filename": "src/esbuild-types.ts",
|
|
2902
|
-
"line":
|
|
2903
|
+
"line": 65
|
|
2903
2904
|
},
|
|
2904
2905
|
"name": "BuildOptions",
|
|
2905
2906
|
"properties": [
|
|
@@ -2912,7 +2913,7 @@
|
|
|
2912
2913
|
"immutable": true,
|
|
2913
2914
|
"locationInModule": {
|
|
2914
2915
|
"filename": "src/esbuild-types.ts",
|
|
2915
|
-
"line":
|
|
2916
|
+
"line": 117
|
|
2916
2917
|
},
|
|
2917
2918
|
"name": "absWorkingDir",
|
|
2918
2919
|
"optional": true,
|
|
@@ -2929,7 +2930,7 @@
|
|
|
2929
2930
|
"immutable": true,
|
|
2930
2931
|
"locationInModule": {
|
|
2931
2932
|
"filename": "src/esbuild-types.ts",
|
|
2932
|
-
"line":
|
|
2933
|
+
"line": 95
|
|
2933
2934
|
},
|
|
2934
2935
|
"name": "allowOverwrite",
|
|
2935
2936
|
"optional": true,
|
|
@@ -2946,7 +2947,7 @@
|
|
|
2946
2947
|
"immutable": true,
|
|
2947
2948
|
"locationInModule": {
|
|
2948
2949
|
"filename": "src/esbuild-types.ts",
|
|
2949
|
-
"line":
|
|
2950
|
+
"line": 107
|
|
2950
2951
|
},
|
|
2951
2952
|
"name": "assetNames",
|
|
2952
2953
|
"optional": true,
|
|
@@ -2963,7 +2964,7 @@
|
|
|
2963
2964
|
"immutable": true,
|
|
2964
2965
|
"locationInModule": {
|
|
2965
2966
|
"filename": "src/esbuild-types.ts",
|
|
2966
|
-
"line":
|
|
2967
|
+
"line": 111
|
|
2967
2968
|
},
|
|
2968
2969
|
"name": "banner",
|
|
2969
2970
|
"optional": true,
|
|
@@ -2985,7 +2986,7 @@
|
|
|
2985
2986
|
"immutable": true,
|
|
2986
2987
|
"locationInModule": {
|
|
2987
2988
|
"filename": "src/esbuild-types.ts",
|
|
2988
|
-
"line":
|
|
2989
|
+
"line": 67
|
|
2989
2990
|
},
|
|
2990
2991
|
"name": "bundle",
|
|
2991
2992
|
"optional": true,
|
|
@@ -3002,7 +3003,7 @@
|
|
|
3002
3003
|
"immutable": true,
|
|
3003
3004
|
"locationInModule": {
|
|
3004
3005
|
"filename": "src/esbuild-types.ts",
|
|
3005
|
-
"line":
|
|
3006
|
+
"line": 37
|
|
3006
3007
|
},
|
|
3007
3008
|
"name": "charset",
|
|
3008
3009
|
"optional": true,
|
|
@@ -3019,7 +3020,7 @@
|
|
|
3019
3020
|
"immutable": true,
|
|
3020
3021
|
"locationInModule": {
|
|
3021
3022
|
"filename": "src/esbuild-types.ts",
|
|
3022
|
-
"line":
|
|
3023
|
+
"line": 105
|
|
3023
3024
|
},
|
|
3024
3025
|
"name": "chunkNames",
|
|
3025
3026
|
"optional": true,
|
|
@@ -3036,7 +3037,7 @@
|
|
|
3036
3037
|
"immutable": true,
|
|
3037
3038
|
"locationInModule": {
|
|
3038
3039
|
"filename": "src/esbuild-types.ts",
|
|
3039
|
-
"line":
|
|
3040
|
+
"line": 58
|
|
3040
3041
|
},
|
|
3041
3042
|
"name": "color",
|
|
3042
3043
|
"optional": true,
|
|
@@ -3053,7 +3054,7 @@
|
|
|
3053
3054
|
"immutable": true,
|
|
3054
3055
|
"locationInModule": {
|
|
3055
3056
|
"filename": "src/esbuild-types.ts",
|
|
3056
|
-
"line":
|
|
3057
|
+
"line": 91
|
|
3057
3058
|
},
|
|
3058
3059
|
"name": "conditions",
|
|
3059
3060
|
"optional": true,
|
|
@@ -3075,7 +3076,7 @@
|
|
|
3075
3076
|
"immutable": true,
|
|
3076
3077
|
"locationInModule": {
|
|
3077
3078
|
"filename": "src/esbuild-types.ts",
|
|
3078
|
-
"line":
|
|
3079
|
+
"line": 51
|
|
3079
3080
|
},
|
|
3080
3081
|
"name": "define",
|
|
3081
3082
|
"optional": true,
|
|
@@ -3088,6 +3089,27 @@
|
|
|
3088
3089
|
}
|
|
3089
3090
|
}
|
|
3090
3091
|
},
|
|
3092
|
+
{
|
|
3093
|
+
"abstract": true,
|
|
3094
|
+
"docs": {
|
|
3095
|
+
"stability": "stable"
|
|
3096
|
+
},
|
|
3097
|
+
"immutable": true,
|
|
3098
|
+
"locationInModule": {
|
|
3099
|
+
"filename": "src/esbuild-types.ts",
|
|
3100
|
+
"line": 27
|
|
3101
|
+
},
|
|
3102
|
+
"name": "drop",
|
|
3103
|
+
"optional": true,
|
|
3104
|
+
"type": {
|
|
3105
|
+
"collection": {
|
|
3106
|
+
"elementtype": {
|
|
3107
|
+
"primitive": "string"
|
|
3108
|
+
},
|
|
3109
|
+
"kind": "array"
|
|
3110
|
+
}
|
|
3111
|
+
}
|
|
3112
|
+
},
|
|
3091
3113
|
{
|
|
3092
3114
|
"abstract": true,
|
|
3093
3115
|
"docs": {
|
|
@@ -3097,7 +3119,7 @@
|
|
|
3097
3119
|
"immutable": true,
|
|
3098
3120
|
"locationInModule": {
|
|
3099
3121
|
"filename": "src/esbuild-types.ts",
|
|
3100
|
-
"line":
|
|
3122
|
+
"line": 103
|
|
3101
3123
|
},
|
|
3102
3124
|
"name": "entryNames",
|
|
3103
3125
|
"optional": true,
|
|
@@ -3114,7 +3136,7 @@
|
|
|
3114
3136
|
"immutable": true,
|
|
3115
3137
|
"locationInModule": {
|
|
3116
3138
|
"filename": "src/esbuild-types.ts",
|
|
3117
|
-
"line":
|
|
3139
|
+
"line": 83
|
|
3118
3140
|
},
|
|
3119
3141
|
"name": "external",
|
|
3120
3142
|
"optional": true,
|
|
@@ -3136,7 +3158,7 @@
|
|
|
3136
3158
|
"immutable": true,
|
|
3137
3159
|
"locationInModule": {
|
|
3138
3160
|
"filename": "src/esbuild-types.ts",
|
|
3139
|
-
"line":
|
|
3161
|
+
"line": 113
|
|
3140
3162
|
},
|
|
3141
3163
|
"name": "footer",
|
|
3142
3164
|
"optional": true,
|
|
@@ -3158,7 +3180,7 @@
|
|
|
3158
3180
|
"immutable": true,
|
|
3159
3181
|
"locationInModule": {
|
|
3160
3182
|
"filename": "src/esbuild-types.ts",
|
|
3161
|
-
"line":
|
|
3183
|
+
"line": 21
|
|
3162
3184
|
},
|
|
3163
3185
|
"name": "format",
|
|
3164
3186
|
"optional": true,
|
|
@@ -3175,7 +3197,7 @@
|
|
|
3175
3197
|
"immutable": true,
|
|
3176
3198
|
"locationInModule": {
|
|
3177
3199
|
"filename": "src/esbuild-types.ts",
|
|
3178
|
-
"line":
|
|
3200
|
+
"line": 23
|
|
3179
3201
|
},
|
|
3180
3202
|
"name": "globalName",
|
|
3181
3203
|
"optional": true,
|
|
@@ -3192,7 +3214,7 @@
|
|
|
3192
3214
|
"immutable": true,
|
|
3193
3215
|
"locationInModule": {
|
|
3194
3216
|
"filename": "src/esbuild-types.ts",
|
|
3195
|
-
"line":
|
|
3217
|
+
"line": 41
|
|
3196
3218
|
},
|
|
3197
3219
|
"name": "ignoreAnnotations",
|
|
3198
3220
|
"optional": true,
|
|
@@ -3209,7 +3231,7 @@
|
|
|
3209
3231
|
"immutable": true,
|
|
3210
3232
|
"locationInModule": {
|
|
3211
3233
|
"filename": "src/esbuild-types.ts",
|
|
3212
|
-
"line":
|
|
3234
|
+
"line": 115
|
|
3213
3235
|
},
|
|
3214
3236
|
"name": "incremental",
|
|
3215
3237
|
"optional": true,
|
|
@@ -3226,7 +3248,7 @@
|
|
|
3226
3248
|
"immutable": true,
|
|
3227
3249
|
"locationInModule": {
|
|
3228
3250
|
"filename": "src/esbuild-types.ts",
|
|
3229
|
-
"line":
|
|
3251
|
+
"line": 109
|
|
3230
3252
|
},
|
|
3231
3253
|
"name": "inject",
|
|
3232
3254
|
"optional": true,
|
|
@@ -3248,7 +3270,7 @@
|
|
|
3248
3270
|
"immutable": true,
|
|
3249
3271
|
"locationInModule": {
|
|
3250
3272
|
"filename": "src/esbuild-types.ts",
|
|
3251
|
-
"line":
|
|
3273
|
+
"line": 44
|
|
3252
3274
|
},
|
|
3253
3275
|
"name": "jsx",
|
|
3254
3276
|
"optional": true,
|
|
@@ -3265,7 +3287,7 @@
|
|
|
3265
3287
|
"immutable": true,
|
|
3266
3288
|
"locationInModule": {
|
|
3267
3289
|
"filename": "src/esbuild-types.ts",
|
|
3268
|
-
"line":
|
|
3290
|
+
"line": 46
|
|
3269
3291
|
},
|
|
3270
3292
|
"name": "jsxFactory",
|
|
3271
3293
|
"optional": true,
|
|
@@ -3282,7 +3304,7 @@
|
|
|
3282
3304
|
"immutable": true,
|
|
3283
3305
|
"locationInModule": {
|
|
3284
3306
|
"filename": "src/esbuild-types.ts",
|
|
3285
|
-
"line":
|
|
3307
|
+
"line": 48
|
|
3286
3308
|
},
|
|
3287
3309
|
"name": "jsxFragment",
|
|
3288
3310
|
"optional": true,
|
|
@@ -3299,7 +3321,7 @@
|
|
|
3299
3321
|
"immutable": true,
|
|
3300
3322
|
"locationInModule": {
|
|
3301
3323
|
"filename": "src/esbuild-types.ts",
|
|
3302
|
-
"line":
|
|
3324
|
+
"line": 55
|
|
3303
3325
|
},
|
|
3304
3326
|
"name": "keepNames",
|
|
3305
3327
|
"optional": true,
|
|
@@ -3316,7 +3338,7 @@
|
|
|
3316
3338
|
"immutable": true,
|
|
3317
3339
|
"locationInModule": {
|
|
3318
3340
|
"filename": "src/esbuild-types.ts",
|
|
3319
|
-
"line":
|
|
3341
|
+
"line": 14
|
|
3320
3342
|
},
|
|
3321
3343
|
"name": "legalComments",
|
|
3322
3344
|
"optional": true,
|
|
@@ -3333,7 +3355,7 @@
|
|
|
3333
3355
|
"immutable": true,
|
|
3334
3356
|
"locationInModule": {
|
|
3335
3357
|
"filename": "src/esbuild-types.ts",
|
|
3336
|
-
"line":
|
|
3358
|
+
"line": 85
|
|
3337
3359
|
},
|
|
3338
3360
|
"name": "loader",
|
|
3339
3361
|
"optional": true,
|
|
@@ -3355,7 +3377,7 @@
|
|
|
3355
3377
|
"immutable": true,
|
|
3356
3378
|
"locationInModule": {
|
|
3357
3379
|
"filename": "src/esbuild-types.ts",
|
|
3358
|
-
"line":
|
|
3380
|
+
"line": 60
|
|
3359
3381
|
},
|
|
3360
3382
|
"name": "logLevel",
|
|
3361
3383
|
"optional": true,
|
|
@@ -3372,7 +3394,7 @@
|
|
|
3372
3394
|
"immutable": true,
|
|
3373
3395
|
"locationInModule": {
|
|
3374
3396
|
"filename": "src/esbuild-types.ts",
|
|
3375
|
-
"line":
|
|
3397
|
+
"line": 62
|
|
3376
3398
|
},
|
|
3377
3399
|
"name": "logLimit",
|
|
3378
3400
|
"optional": true,
|
|
@@ -3389,7 +3411,7 @@
|
|
|
3389
3411
|
"immutable": true,
|
|
3390
3412
|
"locationInModule": {
|
|
3391
3413
|
"filename": "src/esbuild-types.ts",
|
|
3392
|
-
"line":
|
|
3414
|
+
"line": 89
|
|
3393
3415
|
},
|
|
3394
3416
|
"name": "mainFields",
|
|
3395
3417
|
"optional": true,
|
|
@@ -3411,7 +3433,7 @@
|
|
|
3411
3433
|
"immutable": true,
|
|
3412
3434
|
"locationInModule": {
|
|
3413
3435
|
"filename": "src/esbuild-types.ts",
|
|
3414
|
-
"line":
|
|
3436
|
+
"line": 75
|
|
3415
3437
|
},
|
|
3416
3438
|
"name": "metafile",
|
|
3417
3439
|
"optional": true,
|
|
@@ -3428,7 +3450,7 @@
|
|
|
3428
3450
|
"immutable": true,
|
|
3429
3451
|
"locationInModule": {
|
|
3430
3452
|
"filename": "src/esbuild-types.ts",
|
|
3431
|
-
"line":
|
|
3453
|
+
"line": 29
|
|
3432
3454
|
},
|
|
3433
3455
|
"name": "minify",
|
|
3434
3456
|
"optional": true,
|
|
@@ -3445,7 +3467,7 @@
|
|
|
3445
3467
|
"immutable": true,
|
|
3446
3468
|
"locationInModule": {
|
|
3447
3469
|
"filename": "src/esbuild-types.ts",
|
|
3448
|
-
"line":
|
|
3470
|
+
"line": 33
|
|
3449
3471
|
},
|
|
3450
3472
|
"name": "minifyIdentifiers",
|
|
3451
3473
|
"optional": true,
|
|
@@ -3462,7 +3484,7 @@
|
|
|
3462
3484
|
"immutable": true,
|
|
3463
3485
|
"locationInModule": {
|
|
3464
3486
|
"filename": "src/esbuild-types.ts",
|
|
3465
|
-
"line":
|
|
3487
|
+
"line": 35
|
|
3466
3488
|
},
|
|
3467
3489
|
"name": "minifySyntax",
|
|
3468
3490
|
"optional": true,
|
|
@@ -3479,7 +3501,7 @@
|
|
|
3479
3501
|
"immutable": true,
|
|
3480
3502
|
"locationInModule": {
|
|
3481
3503
|
"filename": "src/esbuild-types.ts",
|
|
3482
|
-
"line":
|
|
3504
|
+
"line": 31
|
|
3483
3505
|
},
|
|
3484
3506
|
"name": "minifyWhitespace",
|
|
3485
3507
|
"optional": true,
|
|
@@ -3496,7 +3518,7 @@
|
|
|
3496
3518
|
"immutable": true,
|
|
3497
3519
|
"locationInModule": {
|
|
3498
3520
|
"filename": "src/esbuild-types.ts",
|
|
3499
|
-
"line":
|
|
3521
|
+
"line": 119
|
|
3500
3522
|
},
|
|
3501
3523
|
"name": "nodePaths",
|
|
3502
3524
|
"optional": true,
|
|
@@ -3518,7 +3540,7 @@
|
|
|
3518
3540
|
"immutable": true,
|
|
3519
3541
|
"locationInModule": {
|
|
3520
3542
|
"filename": "src/esbuild-types.ts",
|
|
3521
|
-
"line":
|
|
3543
|
+
"line": 79
|
|
3522
3544
|
},
|
|
3523
3545
|
"name": "outbase",
|
|
3524
3546
|
"optional": true,
|
|
@@ -3535,7 +3557,7 @@
|
|
|
3535
3557
|
"immutable": true,
|
|
3536
3558
|
"locationInModule": {
|
|
3537
3559
|
"filename": "src/esbuild-types.ts",
|
|
3538
|
-
"line":
|
|
3560
|
+
"line": 77
|
|
3539
3561
|
},
|
|
3540
3562
|
"name": "outdir",
|
|
3541
3563
|
"optional": true,
|
|
@@ -3552,7 +3574,7 @@
|
|
|
3552
3574
|
"immutable": true,
|
|
3553
3575
|
"locationInModule": {
|
|
3554
3576
|
"filename": "src/esbuild-types.ts",
|
|
3555
|
-
"line":
|
|
3577
|
+
"line": 99
|
|
3556
3578
|
},
|
|
3557
3579
|
"name": "outExtension",
|
|
3558
3580
|
"optional": true,
|
|
@@ -3574,7 +3596,7 @@
|
|
|
3574
3596
|
"immutable": true,
|
|
3575
3597
|
"locationInModule": {
|
|
3576
3598
|
"filename": "src/esbuild-types.ts",
|
|
3577
|
-
"line":
|
|
3599
|
+
"line": 73
|
|
3578
3600
|
},
|
|
3579
3601
|
"name": "outfile",
|
|
3580
3602
|
"optional": true,
|
|
@@ -3591,7 +3613,7 @@
|
|
|
3591
3613
|
"immutable": true,
|
|
3592
3614
|
"locationInModule": {
|
|
3593
3615
|
"filename": "src/esbuild-types.ts",
|
|
3594
|
-
"line":
|
|
3616
|
+
"line": 81
|
|
3595
3617
|
},
|
|
3596
3618
|
"name": "platform",
|
|
3597
3619
|
"optional": true,
|
|
@@ -3608,7 +3630,7 @@
|
|
|
3608
3630
|
"immutable": true,
|
|
3609
3631
|
"locationInModule": {
|
|
3610
3632
|
"filename": "src/esbuild-types.ts",
|
|
3611
|
-
"line":
|
|
3633
|
+
"line": 71
|
|
3612
3634
|
},
|
|
3613
3635
|
"name": "preserveSymlinks",
|
|
3614
3636
|
"optional": true,
|
|
@@ -3625,7 +3647,7 @@
|
|
|
3625
3647
|
"immutable": true,
|
|
3626
3648
|
"locationInModule": {
|
|
3627
3649
|
"filename": "src/esbuild-types.ts",
|
|
3628
|
-
"line":
|
|
3650
|
+
"line": 101
|
|
3629
3651
|
},
|
|
3630
3652
|
"name": "publicPath",
|
|
3631
3653
|
"optional": true,
|
|
@@ -3642,7 +3664,7 @@
|
|
|
3642
3664
|
"immutable": true,
|
|
3643
3665
|
"locationInModule": {
|
|
3644
3666
|
"filename": "src/esbuild-types.ts",
|
|
3645
|
-
"line":
|
|
3667
|
+
"line": 53
|
|
3646
3668
|
},
|
|
3647
3669
|
"name": "pure",
|
|
3648
3670
|
"optional": true,
|
|
@@ -3664,7 +3686,7 @@
|
|
|
3664
3686
|
"immutable": true,
|
|
3665
3687
|
"locationInModule": {
|
|
3666
3688
|
"filename": "src/esbuild-types.ts",
|
|
3667
|
-
"line":
|
|
3689
|
+
"line": 87
|
|
3668
3690
|
},
|
|
3669
3691
|
"name": "resolveExtensions",
|
|
3670
3692
|
"optional": true,
|
|
@@ -3686,7 +3708,7 @@
|
|
|
3686
3708
|
"immutable": true,
|
|
3687
3709
|
"locationInModule": {
|
|
3688
3710
|
"filename": "src/esbuild-types.ts",
|
|
3689
|
-
"line":
|
|
3711
|
+
"line": 12
|
|
3690
3712
|
},
|
|
3691
3713
|
"name": "sourcemap",
|
|
3692
3714
|
"optional": true,
|
|
@@ -3712,7 +3734,7 @@
|
|
|
3712
3734
|
"immutable": true,
|
|
3713
3735
|
"locationInModule": {
|
|
3714
3736
|
"filename": "src/esbuild-types.ts",
|
|
3715
|
-
"line":
|
|
3737
|
+
"line": 16
|
|
3716
3738
|
},
|
|
3717
3739
|
"name": "sourceRoot",
|
|
3718
3740
|
"optional": true,
|
|
@@ -3729,7 +3751,7 @@
|
|
|
3729
3751
|
"immutable": true,
|
|
3730
3752
|
"locationInModule": {
|
|
3731
3753
|
"filename": "src/esbuild-types.ts",
|
|
3732
|
-
"line":
|
|
3754
|
+
"line": 18
|
|
3733
3755
|
},
|
|
3734
3756
|
"name": "sourcesContent",
|
|
3735
3757
|
"optional": true,
|
|
@@ -3746,7 +3768,7 @@
|
|
|
3746
3768
|
"immutable": true,
|
|
3747
3769
|
"locationInModule": {
|
|
3748
3770
|
"filename": "src/esbuild-types.ts",
|
|
3749
|
-
"line":
|
|
3771
|
+
"line": 69
|
|
3750
3772
|
},
|
|
3751
3773
|
"name": "splitting",
|
|
3752
3774
|
"optional": true,
|
|
@@ -3763,7 +3785,7 @@
|
|
|
3763
3785
|
"immutable": true,
|
|
3764
3786
|
"locationInModule": {
|
|
3765
3787
|
"filename": "src/esbuild-types.ts",
|
|
3766
|
-
"line":
|
|
3788
|
+
"line": 25
|
|
3767
3789
|
},
|
|
3768
3790
|
"name": "target",
|
|
3769
3791
|
"optional": true,
|
|
@@ -3794,7 +3816,7 @@
|
|
|
3794
3816
|
"immutable": true,
|
|
3795
3817
|
"locationInModule": {
|
|
3796
3818
|
"filename": "src/esbuild-types.ts",
|
|
3797
|
-
"line":
|
|
3819
|
+
"line": 39
|
|
3798
3820
|
},
|
|
3799
3821
|
"name": "treeShaking",
|
|
3800
3822
|
"optional": true,
|
|
@@ -3811,7 +3833,7 @@
|
|
|
3811
3833
|
"immutable": true,
|
|
3812
3834
|
"locationInModule": {
|
|
3813
3835
|
"filename": "src/esbuild-types.ts",
|
|
3814
|
-
"line":
|
|
3836
|
+
"line": 97
|
|
3815
3837
|
},
|
|
3816
3838
|
"name": "tsconfig",
|
|
3817
3839
|
"optional": true,
|
|
@@ -3828,7 +3850,7 @@
|
|
|
3828
3850
|
"immutable": true,
|
|
3829
3851
|
"locationInModule": {
|
|
3830
3852
|
"filename": "src/esbuild-types.ts",
|
|
3831
|
-
"line":
|
|
3853
|
+
"line": 93
|
|
3832
3854
|
},
|
|
3833
3855
|
"name": "write",
|
|
3834
3856
|
"optional": true,
|
|
@@ -4813,7 +4835,7 @@
|
|
|
4813
4835
|
"kind": "interface",
|
|
4814
4836
|
"locationInModule": {
|
|
4815
4837
|
"filename": "src/esbuild-types.ts",
|
|
4816
|
-
"line":
|
|
4838
|
+
"line": 224
|
|
4817
4839
|
},
|
|
4818
4840
|
"name": "TransformOptions",
|
|
4819
4841
|
"properties": [
|
|
@@ -4825,7 +4847,7 @@
|
|
|
4825
4847
|
"immutable": true,
|
|
4826
4848
|
"locationInModule": {
|
|
4827
4849
|
"filename": "src/esbuild-types.ts",
|
|
4828
|
-
"line":
|
|
4850
|
+
"line": 229
|
|
4829
4851
|
},
|
|
4830
4852
|
"name": "banner",
|
|
4831
4853
|
"optional": true,
|
|
@@ -4842,7 +4864,7 @@
|
|
|
4842
4864
|
"immutable": true,
|
|
4843
4865
|
"locationInModule": {
|
|
4844
4866
|
"filename": "src/esbuild-types.ts",
|
|
4845
|
-
"line":
|
|
4867
|
+
"line": 37
|
|
4846
4868
|
},
|
|
4847
4869
|
"name": "charset",
|
|
4848
4870
|
"optional": true,
|
|
@@ -4859,7 +4881,7 @@
|
|
|
4859
4881
|
"immutable": true,
|
|
4860
4882
|
"locationInModule": {
|
|
4861
4883
|
"filename": "src/esbuild-types.ts",
|
|
4862
|
-
"line":
|
|
4884
|
+
"line": 58
|
|
4863
4885
|
},
|
|
4864
4886
|
"name": "color",
|
|
4865
4887
|
"optional": true,
|
|
@@ -4876,7 +4898,7 @@
|
|
|
4876
4898
|
"immutable": true,
|
|
4877
4899
|
"locationInModule": {
|
|
4878
4900
|
"filename": "src/esbuild-types.ts",
|
|
4879
|
-
"line":
|
|
4901
|
+
"line": 51
|
|
4880
4902
|
},
|
|
4881
4903
|
"name": "define",
|
|
4882
4904
|
"optional": true,
|
|
@@ -4897,7 +4919,28 @@
|
|
|
4897
4919
|
"immutable": true,
|
|
4898
4920
|
"locationInModule": {
|
|
4899
4921
|
"filename": "src/esbuild-types.ts",
|
|
4900
|
-
"line":
|
|
4922
|
+
"line": 27
|
|
4923
|
+
},
|
|
4924
|
+
"name": "drop",
|
|
4925
|
+
"optional": true,
|
|
4926
|
+
"type": {
|
|
4927
|
+
"collection": {
|
|
4928
|
+
"elementtype": {
|
|
4929
|
+
"primitive": "string"
|
|
4930
|
+
},
|
|
4931
|
+
"kind": "array"
|
|
4932
|
+
}
|
|
4933
|
+
}
|
|
4934
|
+
},
|
|
4935
|
+
{
|
|
4936
|
+
"abstract": true,
|
|
4937
|
+
"docs": {
|
|
4938
|
+
"stability": "stable"
|
|
4939
|
+
},
|
|
4940
|
+
"immutable": true,
|
|
4941
|
+
"locationInModule": {
|
|
4942
|
+
"filename": "src/esbuild-types.ts",
|
|
4943
|
+
"line": 230
|
|
4901
4944
|
},
|
|
4902
4945
|
"name": "footer",
|
|
4903
4946
|
"optional": true,
|
|
@@ -4914,7 +4957,7 @@
|
|
|
4914
4957
|
"immutable": true,
|
|
4915
4958
|
"locationInModule": {
|
|
4916
4959
|
"filename": "src/esbuild-types.ts",
|
|
4917
|
-
"line":
|
|
4960
|
+
"line": 21
|
|
4918
4961
|
},
|
|
4919
4962
|
"name": "format",
|
|
4920
4963
|
"optional": true,
|
|
@@ -4931,7 +4974,7 @@
|
|
|
4931
4974
|
"immutable": true,
|
|
4932
4975
|
"locationInModule": {
|
|
4933
4976
|
"filename": "src/esbuild-types.ts",
|
|
4934
|
-
"line":
|
|
4977
|
+
"line": 23
|
|
4935
4978
|
},
|
|
4936
4979
|
"name": "globalName",
|
|
4937
4980
|
"optional": true,
|
|
@@ -4948,7 +4991,7 @@
|
|
|
4948
4991
|
"immutable": true,
|
|
4949
4992
|
"locationInModule": {
|
|
4950
4993
|
"filename": "src/esbuild-types.ts",
|
|
4951
|
-
"line":
|
|
4994
|
+
"line": 41
|
|
4952
4995
|
},
|
|
4953
4996
|
"name": "ignoreAnnotations",
|
|
4954
4997
|
"optional": true,
|
|
@@ -4965,7 +5008,7 @@
|
|
|
4965
5008
|
"immutable": true,
|
|
4966
5009
|
"locationInModule": {
|
|
4967
5010
|
"filename": "src/esbuild-types.ts",
|
|
4968
|
-
"line":
|
|
5011
|
+
"line": 44
|
|
4969
5012
|
},
|
|
4970
5013
|
"name": "jsx",
|
|
4971
5014
|
"optional": true,
|
|
@@ -4982,7 +5025,7 @@
|
|
|
4982
5025
|
"immutable": true,
|
|
4983
5026
|
"locationInModule": {
|
|
4984
5027
|
"filename": "src/esbuild-types.ts",
|
|
4985
|
-
"line":
|
|
5028
|
+
"line": 46
|
|
4986
5029
|
},
|
|
4987
5030
|
"name": "jsxFactory",
|
|
4988
5031
|
"optional": true,
|
|
@@ -4999,7 +5042,7 @@
|
|
|
4999
5042
|
"immutable": true,
|
|
5000
5043
|
"locationInModule": {
|
|
5001
5044
|
"filename": "src/esbuild-types.ts",
|
|
5002
|
-
"line":
|
|
5045
|
+
"line": 48
|
|
5003
5046
|
},
|
|
5004
5047
|
"name": "jsxFragment",
|
|
5005
5048
|
"optional": true,
|
|
@@ -5016,7 +5059,7 @@
|
|
|
5016
5059
|
"immutable": true,
|
|
5017
5060
|
"locationInModule": {
|
|
5018
5061
|
"filename": "src/esbuild-types.ts",
|
|
5019
|
-
"line":
|
|
5062
|
+
"line": 55
|
|
5020
5063
|
},
|
|
5021
5064
|
"name": "keepNames",
|
|
5022
5065
|
"optional": true,
|
|
@@ -5033,7 +5076,7 @@
|
|
|
5033
5076
|
"immutable": true,
|
|
5034
5077
|
"locationInModule": {
|
|
5035
5078
|
"filename": "src/esbuild-types.ts",
|
|
5036
|
-
"line":
|
|
5079
|
+
"line": 14
|
|
5037
5080
|
},
|
|
5038
5081
|
"name": "legalComments",
|
|
5039
5082
|
"optional": true,
|
|
@@ -5049,7 +5092,7 @@
|
|
|
5049
5092
|
"immutable": true,
|
|
5050
5093
|
"locationInModule": {
|
|
5051
5094
|
"filename": "src/esbuild-types.ts",
|
|
5052
|
-
"line":
|
|
5095
|
+
"line": 228
|
|
5053
5096
|
},
|
|
5054
5097
|
"name": "loader",
|
|
5055
5098
|
"optional": true,
|
|
@@ -5066,7 +5109,7 @@
|
|
|
5066
5109
|
"immutable": true,
|
|
5067
5110
|
"locationInModule": {
|
|
5068
5111
|
"filename": "src/esbuild-types.ts",
|
|
5069
|
-
"line":
|
|
5112
|
+
"line": 60
|
|
5070
5113
|
},
|
|
5071
5114
|
"name": "logLevel",
|
|
5072
5115
|
"optional": true,
|
|
@@ -5083,7 +5126,7 @@
|
|
|
5083
5126
|
"immutable": true,
|
|
5084
5127
|
"locationInModule": {
|
|
5085
5128
|
"filename": "src/esbuild-types.ts",
|
|
5086
|
-
"line":
|
|
5129
|
+
"line": 62
|
|
5087
5130
|
},
|
|
5088
5131
|
"name": "logLimit",
|
|
5089
5132
|
"optional": true,
|
|
@@ -5100,7 +5143,7 @@
|
|
|
5100
5143
|
"immutable": true,
|
|
5101
5144
|
"locationInModule": {
|
|
5102
5145
|
"filename": "src/esbuild-types.ts",
|
|
5103
|
-
"line":
|
|
5146
|
+
"line": 29
|
|
5104
5147
|
},
|
|
5105
5148
|
"name": "minify",
|
|
5106
5149
|
"optional": true,
|
|
@@ -5117,7 +5160,7 @@
|
|
|
5117
5160
|
"immutable": true,
|
|
5118
5161
|
"locationInModule": {
|
|
5119
5162
|
"filename": "src/esbuild-types.ts",
|
|
5120
|
-
"line":
|
|
5163
|
+
"line": 33
|
|
5121
5164
|
},
|
|
5122
5165
|
"name": "minifyIdentifiers",
|
|
5123
5166
|
"optional": true,
|
|
@@ -5134,7 +5177,7 @@
|
|
|
5134
5177
|
"immutable": true,
|
|
5135
5178
|
"locationInModule": {
|
|
5136
5179
|
"filename": "src/esbuild-types.ts",
|
|
5137
|
-
"line":
|
|
5180
|
+
"line": 35
|
|
5138
5181
|
},
|
|
5139
5182
|
"name": "minifySyntax",
|
|
5140
5183
|
"optional": true,
|
|
@@ -5151,7 +5194,7 @@
|
|
|
5151
5194
|
"immutable": true,
|
|
5152
5195
|
"locationInModule": {
|
|
5153
5196
|
"filename": "src/esbuild-types.ts",
|
|
5154
|
-
"line":
|
|
5197
|
+
"line": 31
|
|
5155
5198
|
},
|
|
5156
5199
|
"name": "minifyWhitespace",
|
|
5157
5200
|
"optional": true,
|
|
@@ -5168,7 +5211,7 @@
|
|
|
5168
5211
|
"immutable": true,
|
|
5169
5212
|
"locationInModule": {
|
|
5170
5213
|
"filename": "src/esbuild-types.ts",
|
|
5171
|
-
"line":
|
|
5214
|
+
"line": 53
|
|
5172
5215
|
},
|
|
5173
5216
|
"name": "pure",
|
|
5174
5217
|
"optional": true,
|
|
@@ -5189,7 +5232,7 @@
|
|
|
5189
5232
|
"immutable": true,
|
|
5190
5233
|
"locationInModule": {
|
|
5191
5234
|
"filename": "src/esbuild-types.ts",
|
|
5192
|
-
"line":
|
|
5235
|
+
"line": 227
|
|
5193
5236
|
},
|
|
5194
5237
|
"name": "sourcefile",
|
|
5195
5238
|
"optional": true,
|
|
@@ -5206,7 +5249,7 @@
|
|
|
5206
5249
|
"immutable": true,
|
|
5207
5250
|
"locationInModule": {
|
|
5208
5251
|
"filename": "src/esbuild-types.ts",
|
|
5209
|
-
"line":
|
|
5252
|
+
"line": 12
|
|
5210
5253
|
},
|
|
5211
5254
|
"name": "sourcemap",
|
|
5212
5255
|
"optional": true,
|
|
@@ -5232,7 +5275,7 @@
|
|
|
5232
5275
|
"immutable": true,
|
|
5233
5276
|
"locationInModule": {
|
|
5234
5277
|
"filename": "src/esbuild-types.ts",
|
|
5235
|
-
"line":
|
|
5278
|
+
"line": 16
|
|
5236
5279
|
},
|
|
5237
5280
|
"name": "sourceRoot",
|
|
5238
5281
|
"optional": true,
|
|
@@ -5249,7 +5292,7 @@
|
|
|
5249
5292
|
"immutable": true,
|
|
5250
5293
|
"locationInModule": {
|
|
5251
5294
|
"filename": "src/esbuild-types.ts",
|
|
5252
|
-
"line":
|
|
5295
|
+
"line": 18
|
|
5253
5296
|
},
|
|
5254
5297
|
"name": "sourcesContent",
|
|
5255
5298
|
"optional": true,
|
|
@@ -5266,7 +5309,7 @@
|
|
|
5266
5309
|
"immutable": true,
|
|
5267
5310
|
"locationInModule": {
|
|
5268
5311
|
"filename": "src/esbuild-types.ts",
|
|
5269
|
-
"line":
|
|
5312
|
+
"line": 25
|
|
5270
5313
|
},
|
|
5271
5314
|
"name": "target",
|
|
5272
5315
|
"optional": true,
|
|
@@ -5297,7 +5340,7 @@
|
|
|
5297
5340
|
"immutable": true,
|
|
5298
5341
|
"locationInModule": {
|
|
5299
5342
|
"filename": "src/esbuild-types.ts",
|
|
5300
|
-
"line":
|
|
5343
|
+
"line": 39
|
|
5301
5344
|
},
|
|
5302
5345
|
"name": "treeShaking",
|
|
5303
5346
|
"optional": true,
|
|
@@ -5313,7 +5356,7 @@
|
|
|
5313
5356
|
"immutable": true,
|
|
5314
5357
|
"locationInModule": {
|
|
5315
5358
|
"filename": "src/esbuild-types.ts",
|
|
5316
|
-
"line":
|
|
5359
|
+
"line": 225
|
|
5317
5360
|
},
|
|
5318
5361
|
"name": "tsconfigRaw",
|
|
5319
5362
|
"optional": true,
|
|
@@ -5847,6 +5890,6 @@
|
|
|
5847
5890
|
"symbolId": "src/source:TypeScriptSourceProps"
|
|
5848
5891
|
}
|
|
5849
5892
|
},
|
|
5850
|
-
"version": "3.
|
|
5851
|
-
"fingerprint": "
|
|
5893
|
+
"version": "3.1.0",
|
|
5894
|
+
"fingerprint": "ZkMHvmzI01EO87iXPfGbaGIoBdnKLK9/dPwUL77+4bw="
|
|
5852
5895
|
}
|