think-typescript
v2.0.0
Published
Use TypeScript transpile ts to js
Downloads
12
Keywords
Readme
think-typescript
think-typescript
think-typescript
compile typescript file
Syntax
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
.
Usage
Compile typescript file:
import thinkTypescript from 'think-typescript';
thinkTypescript({
srcPath: './test/src/a',
outPath: './test/out',
file: 'b/test.ts'
});