将要导入的ts编译到ES2019,支持使用require导入一个ts文件

This commit is contained in:
nonameShijian 2024-02-03 19:39:33 +08:00
parent d9022bb482
commit aefc70ccb3
2 changed files with 43 additions and 13 deletions

View File

@ -86,14 +86,16 @@ new Promise(resolve => {
exit()
}
else {
// 在http环境下修改__dirname
if (location.protocol.startsWith('http') &&
typeof window.require == 'function' &&
// node环境下
if (typeof window.require == 'function' &&
typeof window.process == 'object' &&
typeof window.__dirname == 'string' &&
typeof window.__dirname == 'string') {
// 在http环境下修改__dirname和require的逻辑
if (location.protocol.startsWith('http') &&
window.__dirname.endsWith('electron.asar\\renderer')) {
const path = require('path');
window.__dirname = path.join(path.resolve(), 'resources/app');
const oldData = Object.entries(window.require);
// @ts-ignore
window.require = function (moduleId) {
try {
@ -102,6 +104,33 @@ new Promise(resolve => {
return module.require(path.join(window.__dirname, moduleId));
}
};
oldData.forEach(([key, value]) => {
window.require[key] = value;
});
}
// 增加导入ts的逻辑
window.require.extensions['.ts'] = function (module, filename) {
// @ts-ignore
const _compile = module._compile;
// @ts-ignore
module._compile = function (code, fileName) {
/**
* @type { import('typescript') }
*/
// @ts-ignore
const ts = require('./game/typescript.js');
// 使用ts compiler对ts文件进行编译
const result = ts.transpile(code, {
module: ts.ModuleKind.CommonJS,
target: ts.ScriptTarget.ES2019,
inlineSourceMap: true
}, fileName);
// 使用默认的js编译函数获取返回值
return _compile.call(this, result, fileName);
}
// @ts-ignore
module._compile(require('fs').readFileSync(filename, 'utf8'), filename);
};
}
if (location.protocol.startsWith('http') && 'serviceWorker' in navigator) {
let scope = window.location.protocol + '//' + window.location.host + '/';

View File

@ -37,6 +37,7 @@ self.addEventListener('fetch', event => {
return res.text().then(text => {
const js = ts.transpile(text, {
module: ts.ModuleKind.ES2015,
target: ts.ScriptTarget.ES2019,
inlineSourceMap: true
}, request.url);
const rep = new Response(new Blob([js], { type: "text/javascript" }), {