think-typescript
compile typescript file
import thinkTypescript from 'think-typescript';
thinkTypescript({
srcPath,
outPath,
file,
typescriptOptions,
ext,
});
srcPath
{String} the file source path.outPath
{String} the directory for output file.file
{String} the file path in the 'srcPath'.[typescriptOptions]
{Object} the typescript options,default{fileName: file, reportDiagnostics: true, compilerOptions: {module: 'commonjs', target: 'es5', sourceMap: true}}
.[ext]
{String} the new file extension,default.js
.
Compile typescript file:
import thinkTypescript from 'think-typescript';
thinkTypescript({
srcPath: './test/src/a',
outPath: './test/out',
file: 'b/test.ts'
});