first commit

This commit is contained in:
jefferyzhao
2025-07-31 17:44:12 +08:00
commit b9bdc8598b
42390 changed files with 4467935 additions and 0 deletions

56
node_modules/ts-pnp/README.md generated vendored Normal file
View File

@ -0,0 +1,56 @@
# <img src="http://www.typescriptlang.org/assets/images/icons/apple-touch-icon-180x180.png" height="40" align="right" /> [Plug'n'Play](https://github.com/yarnpkg/rfcs/pull/101) resolver for TypeScript
[![npm version](https://img.shields.io/npm/v/ts-pnp.svg)](https://www.npmjs.com/package/ts-pnp)
[![node version](https://img.shields.io/node/v/ts-pnp.svg)](https://www.npmjs.com/package/ts-pnp)
*This plugin is also available for Webpack ([pnp-webpack-plugin](https://github.com/arcanis/pnp-webpack-plugin)), Jest ([jest-pnp-resolver](https://github.com/arcanis/jest-pnp-resolver)), and Rollup ([rollup-plugin-pnp-resolve](https://github.com/arcanis/rollup-plugin-pnp-resolve))*
## Installation
```
yarn add -D ts-pnp
```
## Usage
*Note that `ts-pnp` is a low-level package - you shouldn't have to use it unless you're writing a TS compiler host. If you just want to write TypeScript and have it Just Work™, take a look at [`pnp-webpack-plugin`](https://github.com/arcanis/pnp-webpack-plugin#ts-loader-integration) instead.*
This package exports a function that can be used to implement the [`resolveModuleName` hook from `CompilerHost`](https://github.com/Microsoft/TypeScript/wiki/Using-the-Compiler-API#customizing-module-resolution). It mimics the interface from the one you'd typically use and, as all other PnP plugins, works just fine whether your application is actually running under PnP or not.
```js
import {resolveModuleName} from 'ts-pnp';
import * as ts from 'typescript';
function createCompilerHost(
compilerOptions: ts.CompilerOptions,
): ts.CompilerHost {
const compilerHost = {
resolveModuleNames,
resolveTypeReferenceDirectives,
};
return compilerHost;
function resolveModuleNames(moduleNames: string[], containingFile: string) {
return moduleNames.map(moduleName => {
return resolveModuleName(moduleName, containingFile, compilerOptions, compilerHost, ts.resolveModuleName).resolvedModule;
});
}
function resolveTypeReferenceDirectives(typeDirectiveNames: string[], containingFile: string) {
return typeDirectiveNames.map(typeDirectiveName => {
return resolveModuleName(typeDirectiveName, containingFile, compilerOptions, compilerHost, ts.resolveTypeReferenceDirective).resolvedTypeReferenceDirective;
});
}
}
```
## License (MIT)
> **Copyright © 2016 Maël Nison**
>
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
>
> The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
>
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

29
node_modules/ts-pnp/index.d.ts generated vendored Normal file
View File

@ -0,0 +1,29 @@
import * as ts from 'typescript';
export declare function resolveModuleName(
moduleName: string,
containingFile: string,
options: ts.CompilerOptions,
moduleResolutionHost: ts.ModuleResolutionHost,
realResolveModuleName: (
moduleName: string,
containingFile: string,
options: ts.CompilerOptions,
moduleResolutionHost: ts.ResolvedModuleWithFailedLookupLocations,
) => ts.ResolvedModuleWithFailedLookupLocations,
): ts.ResolvedModuleWithFailedLookupLocations;
export declare function resolveModuleName(
moduleName: string,
containingFile: string,
options: ts.CompilerOptions,
moduleResolutionHost: ts.ModuleResolutionHost,
realResolveModuleName: (
moduleName: string,
containingFile: string,
options: ts.CompilerOptions,
moduleResolutionHost: ts.ModuleResolutionHost,
) => ts.ResolvedTypeReferenceDirectiveWithFailedLookupLocations,
): ts.ResolvedTypeReferenceDirectiveWithFailedLookupLocations;

72
node_modules/ts-pnp/index.js generated vendored Normal file
View File

@ -0,0 +1,72 @@
function resolveModuleName(request, issuer, compilerOptions, moduleResolutionHost, parentResolver) {
const pnp = require(`pnpapi`);
const [, prefix = ``, packageName = ``, rest] = request.match(/^(!(?:.*!)+)?((?!\.{0,2}\/)(?:@[^\/]+\/)?[^\/]+)?(.*)/);
let failedLookupLocations = [];
// First we try the resolution on "@types/package-name" starting from the project root
if (packageName) {
const typesPackagePath = `@types/${packageName.replace(/\//g, `__`)}${rest}`;
let unqualified;
try {
unqualified = pnp.resolveToUnqualified(typesPackagePath, issuer, {considerBuiltins: false});
} catch (error) {}
if (unqualified) {
// TypeScript checks whether the directory of the candidate is a directory
// which may cause issues w/ zip loading (since the zip archive is still
// reported as a file). To workaround this we add a trailing slash, which
// causes TypeScript to assume the parent is a directory.
if (moduleResolutionHost.directoryExists && moduleResolutionHost.directoryExists(unqualified))
unqualified += `/`;
const finalResolution = parentResolver(unqualified, issuer, compilerOptions, moduleResolutionHost);
if (finalResolution.resolvedModule || finalResolution.resolvedTypeReferenceDirective) {
return finalResolution;
} else {
failedLookupLocations = failedLookupLocations.concat(finalResolution.failedLookupLocations);
}
}
}
// Then we try on "package-name", this time starting from the package that makes the request
if (true) {
const regularPackagePath = `${packageName || ``}${rest}`;
let unqualified;
try {
unqualified = pnp.resolveToUnqualified(regularPackagePath, issuer, {considerBuiltins: false});
} catch (error) {}
if (unqualified) {
// TypeScript checks whether the directory of the candidate is a directory
// which may cause issues w/ zip loading (since the zip archive is still
// reported as a file). To workaround this we add a trailing slash, which
// causes TypeScript to assume the parent is a directory.
if (moduleResolutionHost.directoryExists && moduleResolutionHost.directoryExists(unqualified))
unqualified += `/`;
const finalResolution = parentResolver(unqualified, issuer, compilerOptions, moduleResolutionHost);
if (finalResolution.resolvedModule || finalResolution.resolvedTypeReferenceDirective) {
return finalResolution;
} else {
failedLookupLocations = failedLookupLocations.concat(finalResolution.failedLookupLocations);
}
}
}
return {
resolvedModule: undefined,
resolvedTypeReferenceDirective: undefined,
failedLookupLocations,
};
}
module.exports.resolveModuleName = process.versions.pnp
? resolveModuleName
: (moduleName, containingFile, compilerOptions, compilerHost, resolveModuleName) =>
resolveModuleName(moduleName, containingFile, compilerOptions, compilerHost);

31
node_modules/ts-pnp/package.json generated vendored Normal file
View File

@ -0,0 +1,31 @@
{
"name": "ts-pnp",
"version": "1.2.0",
"description": "plug'n'play resolver for TypeScript",
"license": "MIT",
"engines": {
"node": ">=6"
},
"homepage": "https://github.com/arcanis/ts-pnp",
"bugs": {
"url": "https://github.com/arcanis/ts-pnp/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/arcanis/ts-pnp.git"
},
"keywords": [
"typescript",
"yarn",
"plugnplay",
"pnp"
],
"devDependencies": {
"typescript": "3.5.3"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
}