mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
44 lines
1.2 KiB
JavaScript
44 lines
1.2 KiB
JavaScript
|
'use strict'
|
||
|
try {
|
||
|
const ts = require('typescript')
|
||
|
const extname = require('path').extname
|
||
|
const config = require('./tsconfig.json')
|
||
|
|
||
|
module.exports = function (task) {
|
||
|
task.plugin('typescript', { every: true }, function * (file, options) {
|
||
|
const opts = {
|
||
|
fileName: file.base,
|
||
|
compilerOptions: {
|
||
|
...config.compilerOptions,
|
||
|
...options
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const ext = extname(file.base)
|
||
|
// For example files without an extension don't have to be rewritten
|
||
|
if (ext) {
|
||
|
// Replace `.ts` with `.js`
|
||
|
const extRegex = new RegExp(ext.replace('.', '\\.') + '$', 'i')
|
||
|
file.base = file.base.replace(extRegex, '.js')
|
||
|
}
|
||
|
|
||
|
// compile output
|
||
|
const result = ts.transpileModule(file.data.toString(), opts)
|
||
|
|
||
|
if (opts.compilerOptions.sourceMap && result.sourceMapText) {
|
||
|
// add sourcemap to `files` array
|
||
|
this._.files.push({
|
||
|
dir: file.dir,
|
||
|
base: `${file.base}.map`,
|
||
|
data: Buffer.from(JSON.stringify(result.sourceMapText), 'utf8')
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// update file's data
|
||
|
file.data = Buffer.from(result.outputText, 'utf8')
|
||
|
})
|
||
|
}
|
||
|
} catch (err) {
|
||
|
console.error(err)
|
||
|
}
|