mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 09:39:30 +08:00
93 lines
No EOL
4.2 KiB
Text
93 lines
No EOL
4.2 KiB
Text
"use strict";
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
}
|
|
Object.defineProperty(o, k2, desc);
|
|
}) : (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
o[k2] = m[k];
|
|
}));
|
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
}) : function(o, v) {
|
|
o["default"] = v;
|
|
});
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
__setModuleDefault(result, mod);
|
|
return result;
|
|
};
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.createProgramFromConfigFile = exports.useProvidedPrograms = void 0;
|
|
const debug_1 = __importDefault(require("debug"));
|
|
const fs = __importStar(require("fs"));
|
|
const path = __importStar(require("path"));
|
|
const ts = __importStar(require("typescript"));
|
|
const shared_1 = require("./shared");
|
|
const log = (0, debug_1.default)('typescript-eslint:typescript-estree:useProvidedProgram');
|
|
function useProvidedPrograms(programInstances, extra) {
|
|
log('Retrieving ast for %s from provided program instance(s)', extra.filePath);
|
|
let astAndProgram;
|
|
for (const programInstance of programInstances) {
|
|
astAndProgram = (0, shared_1.getAstFromProgram)(programInstance, extra);
|
|
// Stop at the first applicable program instance
|
|
if (astAndProgram) {
|
|
break;
|
|
}
|
|
}
|
|
if (!astAndProgram) {
|
|
const relativeFilePath = path.relative(extra.tsconfigRootDir || process.cwd(), extra.filePath);
|
|
const errorLines = [
|
|
'"parserOptions.programs" has been provided for @typescript-eslint/parser.',
|
|
`The file was not found in any of the provided program instance(s): ${relativeFilePath}`,
|
|
];
|
|
throw new Error(errorLines.join('\n'));
|
|
}
|
|
astAndProgram.program.getTypeChecker(); // ensure parent pointers are set in source files
|
|
return astAndProgram;
|
|
}
|
|
exports.useProvidedPrograms = useProvidedPrograms;
|
|
/**
|
|
* Utility offered by parser to help consumers construct their own program instance.
|
|
*
|
|
* @param configFile the path to the tsconfig.json file, relative to `projectDirectory`
|
|
* @param projectDirectory the project directory to use as the CWD, defaults to `process.cwd()`
|
|
*/
|
|
function createProgramFromConfigFile(configFile, projectDirectory) {
|
|
if (ts.sys === undefined) {
|
|
throw new Error('`createProgramFromConfigFile` is only supported in a Node-like environment.');
|
|
}
|
|
const parsed = ts.getParsedCommandLineOfConfigFile(configFile, shared_1.CORE_COMPILER_OPTIONS, {
|
|
onUnRecoverableConfigFileDiagnostic: diag => {
|
|
throw new Error(formatDiagnostics([diag])); // ensures that `parsed` is defined.
|
|
},
|
|
fileExists: fs.existsSync,
|
|
getCurrentDirectory: () => (projectDirectory && path.resolve(projectDirectory)) || process.cwd(),
|
|
readDirectory: ts.sys.readDirectory,
|
|
readFile: file => fs.readFileSync(file, 'utf-8'),
|
|
useCaseSensitiveFileNames: ts.sys.useCaseSensitiveFileNames,
|
|
});
|
|
const result = parsed; // parsed is not undefined, since we throw on failure.
|
|
if (result.errors.length) {
|
|
throw new Error(formatDiagnostics(result.errors));
|
|
}
|
|
const host = ts.createCompilerHost(result.options, true);
|
|
return ts.createProgram(result.fileNames, result.options, host);
|
|
}
|
|
exports.createProgramFromConfigFile = createProgramFromConfigFile;
|
|
function formatDiagnostics(diagnostics) {
|
|
return ts.formatDiagnostics(diagnostics, {
|
|
getCanonicalFileName: f => f,
|
|
getCurrentDirectory: process.cwd,
|
|
getNewLine: () => '\n',
|
|
});
|
|
}
|
|
//# sourceMappingURL=useProvidedPrograms.js.map |