mirror of
https://github.com/ezolenko/rollup-plugin-typescript2.git
synced 2025-12-08 19:06:16 +00:00
- works
This commit is contained in:
parent
74bafa142c
commit
3573518406
79
dist/rollup-plugin-typescript2.cjs.js
vendored
79
dist/rollup-plugin-typescript2.cjs.js
vendored
@ -2,6 +2,7 @@
|
||||
'use strict';
|
||||
|
||||
var ts = require('typescript');
|
||||
var rollupPluginutils = require('rollup-pluginutils');
|
||||
var fs = require('fs');
|
||||
var path = require('path');
|
||||
|
||||
@ -44,10 +45,26 @@ function parseTsConfig() {
|
||||
var configParseResult = ts.parseJsonConfigFileContent(result.config, ts.sys, path.dirname(fileName), undefined, fileName);
|
||||
return configParseResult;
|
||||
}
|
||||
function printDiagnostics(context, diagnostics) {
|
||||
diagnostics.forEach(function (diagnostic) {
|
||||
var message = ts.flattenDiagnosticMessageText(diagnostic.messageText, "\n");
|
||||
if (diagnostic.file) {
|
||||
var _a = diagnostic.file.getLineAndCharacterOfPosition(diagnostic.start), line = _a.line, character = _a.character;
|
||||
context.warn({ message: diagnostic.file.fileName + " (" + (line + 1) + "," + (character + 1) + "): " + message });
|
||||
}
|
||||
else
|
||||
context.warn({ message: message });
|
||||
});
|
||||
}
|
||||
|
||||
function typescript(options) {
|
||||
options = __assign({}, options);
|
||||
var filter = rollupPluginutils.createFilter(options.include || ["*.ts+(|x)", "**/*.ts+(|x)"], options.exclude || ["*.d.ts", "**/*.d.ts"]);
|
||||
delete options.include;
|
||||
delete options.exclude;
|
||||
var parsedConfig = parseTsConfig();
|
||||
console.log("lib:", parsedConfig.options.target, parsedConfig.options.lib);
|
||||
if (parsedConfig.options.module !== ts.ModuleKind.ES2015)
|
||||
throw new Error("rollup-plugin-typescript2: The module kind should be 'es2015', found: '" + ts.ModuleKind[parsedConfig.options.module] + "'");
|
||||
var servicesHost = {
|
||||
getScriptFileNames: function () { return parsedConfig.fileNames; },
|
||||
getScriptVersion: function (_fileName) { return "0"; },
|
||||
@ -61,52 +78,42 @@ function typescript(options) {
|
||||
getDefaultLibFileName: function (opts) { return ts.getDefaultLibFilePath(opts); },
|
||||
};
|
||||
var services = ts.createLanguageService(servicesHost, ts.createDocumentRegistry());
|
||||
var printDiagnostics = function (diagnostics) {
|
||||
diagnostics.forEach(function (diagnostic) {
|
||||
var message = ts.flattenDiagnosticMessageText(diagnostic.messageText, "\n");
|
||||
if (diagnostic.file) {
|
||||
var _a = diagnostic.file.getLineAndCharacterOfPosition(diagnostic.start), line = _a.line, character = _a.character;
|
||||
console.log(" Error " + diagnostic.file.fileName + " (" + (line + 1) + "," + (character + 1) + "): " + message);
|
||||
}
|
||||
else {
|
||||
console.log(" Error: " + message);
|
||||
}
|
||||
});
|
||||
};
|
||||
return {
|
||||
load: function (_id) {
|
||||
resolveId: function (importee, importer) {
|
||||
if (!importer)
|
||||
return null;
|
||||
importer = importer.split("\\").join("/");
|
||||
var result = ts.nodeModuleNameResolver(importee, importer, parsedConfig.options, ts.sys);
|
||||
if (result.resolvedModule && result.resolvedModule.resolvedFileName) {
|
||||
if (_.endsWith(result.resolvedModule.resolvedFileName, ".d.ts"))
|
||||
return null;
|
||||
return result.resolvedModule.resolvedFileName;
|
||||
}
|
||||
return null;
|
||||
},
|
||||
load: function (id) {
|
||||
if (!filter(id))
|
||||
return null;
|
||||
return ""; // avoiding double loading
|
||||
},
|
||||
transform: function (_code, id) {
|
||||
console.log("transform", id);
|
||||
if (!filter(id))
|
||||
return null;
|
||||
var output = services.getEmitOutput(id);
|
||||
if (output.emitSkipped) {
|
||||
var allDiagnostics = services
|
||||
.getCompilerOptionsDiagnostics()
|
||||
.concat(services.getSyntacticDiagnostics(id))
|
||||
.concat(services.getSemanticDiagnostics(id));
|
||||
printDiagnostics(allDiagnostics);
|
||||
throw new Error("failed to transpile " + id);
|
||||
}
|
||||
var allDiagnostics = services
|
||||
.getCompilerOptionsDiagnostics()
|
||||
.concat(services.getSyntacticDiagnostics(id))
|
||||
.concat(services.getSemanticDiagnostics(id));
|
||||
printDiagnostics(this, allDiagnostics);
|
||||
if (output.emitSkipped)
|
||||
this.error({ message: "failed to transpile " + id });
|
||||
var code = _.find(output.outputFiles, function (entry) { return _.endsWith(entry.name, ".js"); });
|
||||
var map = _.find(output.outputFiles, function (entry) { return _.endsWith(entry.name, ".map"); });
|
||||
console.log("code: " + code.name + ", map: " + map.name);
|
||||
return {
|
||||
code: code ? code.text : undefined,
|
||||
map: map ? map.text : undefined,
|
||||
map: map ? JSON.parse(map.text) : { mappings: "" },
|
||||
};
|
||||
},
|
||||
outro: function () {
|
||||
console.log();
|
||||
_.each(parsedConfig.fileNames, function (id) {
|
||||
var allDiagnostics = services
|
||||
.getCompilerOptionsDiagnostics()
|
||||
.concat(services.getSyntacticDiagnostics(id))
|
||||
.concat(services.getSemanticDiagnostics(id));
|
||||
printDiagnostics(allDiagnostics);
|
||||
});
|
||||
return;
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
81
dist/rollup-plugin-typescript2.es.js
vendored
81
dist/rollup-plugin-typescript2.es.js
vendored
@ -1,6 +1,7 @@
|
||||
/* eslint-disable */
|
||||
import { ScriptSnapshot, createDocumentRegistry, createLanguageService, flattenDiagnosticMessageText, getDefaultLibFilePath, parseConfigFileTextToJson, parseJsonConfigFileContent, sys } from 'typescript';
|
||||
import { ModuleKind, ScriptSnapshot, createDocumentRegistry, createLanguageService, flattenDiagnosticMessageText, getDefaultLibFilePath, nodeModuleNameResolver, parseConfigFileTextToJson, parseJsonConfigFileContent, sys } from 'typescript';
|
||||
import * as ts from 'typescript';
|
||||
import { createFilter } from 'rollup-pluginutils';
|
||||
import { existsSync } from 'fs';
|
||||
import * as fs from 'fs';
|
||||
import { dirname, sep } from 'path';
|
||||
@ -45,10 +46,26 @@ function parseTsConfig() {
|
||||
var configParseResult = parseJsonConfigFileContent(result.config, sys, dirname(fileName), undefined, fileName);
|
||||
return configParseResult;
|
||||
}
|
||||
function printDiagnostics(context, diagnostics) {
|
||||
diagnostics.forEach(function (diagnostic) {
|
||||
var message = flattenDiagnosticMessageText(diagnostic.messageText, "\n");
|
||||
if (diagnostic.file) {
|
||||
var _a = diagnostic.file.getLineAndCharacterOfPosition(diagnostic.start), line = _a.line, character = _a.character;
|
||||
context.warn({ message: diagnostic.file.fileName + " (" + (line + 1) + "," + (character + 1) + "): " + message });
|
||||
}
|
||||
else
|
||||
context.warn({ message: message });
|
||||
});
|
||||
}
|
||||
|
||||
function typescript(options) {
|
||||
options = __assign({}, options);
|
||||
var filter = createFilter(options.include || ["*.ts+(|x)", "**/*.ts+(|x)"], options.exclude || ["*.d.ts", "**/*.d.ts"]);
|
||||
delete options.include;
|
||||
delete options.exclude;
|
||||
var parsedConfig = parseTsConfig();
|
||||
console.log("lib:", parsedConfig.options.target, parsedConfig.options.lib);
|
||||
if (parsedConfig.options.module !== ModuleKind.ES2015)
|
||||
throw new Error("rollup-plugin-typescript2: The module kind should be 'es2015', found: '" + ModuleKind[parsedConfig.options.module] + "'");
|
||||
var servicesHost = {
|
||||
getScriptFileNames: function () { return parsedConfig.fileNames; },
|
||||
getScriptVersion: function (_fileName) { return "0"; },
|
||||
@ -62,52 +79,42 @@ function typescript(options) {
|
||||
getDefaultLibFileName: function (opts) { return getDefaultLibFilePath(opts); },
|
||||
};
|
||||
var services = createLanguageService(servicesHost, createDocumentRegistry());
|
||||
var printDiagnostics = function (diagnostics) {
|
||||
diagnostics.forEach(function (diagnostic) {
|
||||
var message = flattenDiagnosticMessageText(diagnostic.messageText, "\n");
|
||||
if (diagnostic.file) {
|
||||
var _a = diagnostic.file.getLineAndCharacterOfPosition(diagnostic.start), line = _a.line, character = _a.character;
|
||||
console.log(" Error " + diagnostic.file.fileName + " (" + (line + 1) + "," + (character + 1) + "): " + message);
|
||||
}
|
||||
else {
|
||||
console.log(" Error: " + message);
|
||||
}
|
||||
});
|
||||
};
|
||||
return {
|
||||
load: function (_id) {
|
||||
resolveId: function (importee, importer) {
|
||||
if (!importer)
|
||||
return null;
|
||||
importer = importer.split("\\").join("/");
|
||||
var result = nodeModuleNameResolver(importee, importer, parsedConfig.options, sys);
|
||||
if (result.resolvedModule && result.resolvedModule.resolvedFileName) {
|
||||
if (_.endsWith(result.resolvedModule.resolvedFileName, ".d.ts"))
|
||||
return null;
|
||||
return result.resolvedModule.resolvedFileName;
|
||||
}
|
||||
return null;
|
||||
},
|
||||
load: function (id) {
|
||||
if (!filter(id))
|
||||
return null;
|
||||
return ""; // avoiding double loading
|
||||
},
|
||||
transform: function (_code, id) {
|
||||
console.log("transform", id);
|
||||
if (!filter(id))
|
||||
return null;
|
||||
var output = services.getEmitOutput(id);
|
||||
if (output.emitSkipped) {
|
||||
var allDiagnostics = services
|
||||
.getCompilerOptionsDiagnostics()
|
||||
.concat(services.getSyntacticDiagnostics(id))
|
||||
.concat(services.getSemanticDiagnostics(id));
|
||||
printDiagnostics(allDiagnostics);
|
||||
throw new Error("failed to transpile " + id);
|
||||
}
|
||||
var allDiagnostics = services
|
||||
.getCompilerOptionsDiagnostics()
|
||||
.concat(services.getSyntacticDiagnostics(id))
|
||||
.concat(services.getSemanticDiagnostics(id));
|
||||
printDiagnostics(this, allDiagnostics);
|
||||
if (output.emitSkipped)
|
||||
this.error({ message: "failed to transpile " + id });
|
||||
var code = _.find(output.outputFiles, function (entry) { return _.endsWith(entry.name, ".js"); });
|
||||
var map = _.find(output.outputFiles, function (entry) { return _.endsWith(entry.name, ".map"); });
|
||||
console.log("code: " + code.name + ", map: " + map.name);
|
||||
return {
|
||||
code: code ? code.text : undefined,
|
||||
map: map ? map.text : undefined,
|
||||
map: map ? JSON.parse(map.text) : { mappings: "" },
|
||||
};
|
||||
},
|
||||
outro: function () {
|
||||
console.log();
|
||||
_.each(parsedConfig.fileNames, function (id) {
|
||||
var allDiagnostics = services
|
||||
.getCompilerOptionsDiagnostics()
|
||||
.concat(services.getSyntacticDiagnostics(id))
|
||||
.concat(services.getSemanticDiagnostics(id));
|
||||
printDiagnostics(allDiagnostics);
|
||||
});
|
||||
return;
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
115
src/index.ts
115
src/index.ts
@ -43,13 +43,43 @@ function parseTsConfig()
|
||||
return configParseResult;
|
||||
}
|
||||
|
||||
interface Message
|
||||
{
|
||||
message: string;
|
||||
}
|
||||
interface Context
|
||||
{
|
||||
warn(message: Message): void;
|
||||
error(message: Message): void;
|
||||
}
|
||||
function printDiagnostics(context: Context, diagnostics: ts.Diagnostic[])
|
||||
{
|
||||
diagnostics.forEach((diagnostic) =>
|
||||
{
|
||||
let message = ts.flattenDiagnosticMessageText(diagnostic.messageText, "\n");
|
||||
if (diagnostic.file)
|
||||
{
|
||||
let { line, character } = diagnostic.file.getLineAndCharacterOfPosition(diagnostic.start);
|
||||
context.warn({ message: `${diagnostic.file.fileName} (${line + 1},${character + 1}): ${message}` });
|
||||
}
|
||||
else
|
||||
context.warn({ message });
|
||||
});
|
||||
};
|
||||
|
||||
export default function typescript (options: any)
|
||||
{
|
||||
options = { ... options };
|
||||
|
||||
const filter = createFilter(options.include || [ "*.ts+(|x)", "**/*.ts+(|x)" ], options.exclude || [ "*.d.ts", "**/*.d.ts" ]);
|
||||
|
||||
delete options.include;
|
||||
delete options.exclude;
|
||||
|
||||
let parsedConfig = parseTsConfig();
|
||||
|
||||
console.log("lib:", parsedConfig.options.target, parsedConfig.options.lib);
|
||||
if (parsedConfig.options.module !== ts.ModuleKind.ES2015)
|
||||
throw new Error( `rollup-plugin-typescript2: The module kind should be 'es2015', found: '${ts.ModuleKind[parsedConfig.options.module]}'` );
|
||||
|
||||
const servicesHost: ts.LanguageServiceHost = {
|
||||
getScriptFileNames: () => parsedConfig.fileNames,
|
||||
@ -68,71 +98,58 @@ export default function typescript (options: any)
|
||||
|
||||
const services = ts.createLanguageService(servicesHost, ts.createDocumentRegistry());
|
||||
|
||||
let printDiagnostics = function(diagnostics: ts.Diagnostic[])
|
||||
{
|
||||
diagnostics.forEach((diagnostic) =>
|
||||
{
|
||||
let message = ts.flattenDiagnosticMessageText(diagnostic.messageText, "\n");
|
||||
if (diagnostic.file)
|
||||
{
|
||||
let { line, character } = diagnostic.file.getLineAndCharacterOfPosition(diagnostic.start);
|
||||
console.log(` Error ${diagnostic.file.fileName} (${line + 1},${character + 1}): ${message}`);
|
||||
}
|
||||
else
|
||||
{
|
||||
console.log(` Error: ${message}`);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
return {
|
||||
load(_id: string): any
|
||||
|
||||
resolveId(importee: string, importer: string)
|
||||
{
|
||||
if (!importer)
|
||||
return null;
|
||||
|
||||
importer = importer.split("\\").join("/");
|
||||
|
||||
let result = ts.nodeModuleNameResolver(importee, importer, parsedConfig.options, ts.sys);
|
||||
|
||||
if (result.resolvedModule && result.resolvedModule.resolvedFileName)
|
||||
{
|
||||
if (_.endsWith(result.resolvedModule.resolvedFileName, ".d.ts"))
|
||||
return null;
|
||||
|
||||
return result.resolvedModule.resolvedFileName;
|
||||
}
|
||||
|
||||
return null;
|
||||
},
|
||||
|
||||
load(id: string): any
|
||||
{
|
||||
if (!filter(id))
|
||||
return null;
|
||||
return ""; // avoiding double loading
|
||||
},
|
||||
|
||||
transform(_code: string, id: string): any
|
||||
transform(this: Context, _code: string, id: string): any
|
||||
{
|
||||
console.log("transform", id);
|
||||
if (!filter(id)) return null;
|
||||
|
||||
let output = services.getEmitOutput(id);
|
||||
|
||||
if (output.emitSkipped)
|
||||
{
|
||||
let allDiagnostics = services
|
||||
.getCompilerOptionsDiagnostics()
|
||||
.concat(services.getSyntacticDiagnostics(id))
|
||||
.concat(services.getSemanticDiagnostics(id));
|
||||
let allDiagnostics = services
|
||||
.getCompilerOptionsDiagnostics()
|
||||
.concat(services.getSyntacticDiagnostics(id))
|
||||
.concat(services.getSemanticDiagnostics(id));
|
||||
|
||||
printDiagnostics(allDiagnostics);
|
||||
throw new Error(`failed to transpile ${id}`);
|
||||
}
|
||||
printDiagnostics(this, allDiagnostics);
|
||||
|
||||
if (output.emitSkipped)
|
||||
this.error({ message: `failed to transpile ${id}`});
|
||||
|
||||
const code: ts.OutputFile = _.find(output.outputFiles, (entry: ts.OutputFile) => _.endsWith(entry.name, ".js") );
|
||||
const map: ts.OutputFile = _.find(output.outputFiles, (entry: ts.OutputFile) => _.endsWith(entry.name, ".map") );
|
||||
|
||||
console.log(`code: ${code.name}, map: ${map.name}`);
|
||||
|
||||
return {
|
||||
code: code ? code.text : undefined,
|
||||
map: map ? map.text : undefined,
|
||||
map: map ? JSON.parse(map.text) : { mappings: "" },
|
||||
};
|
||||
},
|
||||
|
||||
outro(): any
|
||||
{
|
||||
console.log();
|
||||
_.each(parsedConfig.fileNames, (id: string) =>
|
||||
{
|
||||
let allDiagnostics = services
|
||||
.getCompilerOptionsDiagnostics()
|
||||
.concat(services.getSyntacticDiagnostics(id))
|
||||
.concat(services.getSemanticDiagnostics(id));
|
||||
|
||||
printDiagnostics(allDiagnostics);
|
||||
});
|
||||
|
||||
return;
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user