think-typescript

Use TypeScript transpile ts to js

Usage no npm install needed!

<script type="module">
  import thinkTypescript from 'https://cdn.skypack.dev/think-typescript';
</script>

README

think-typescript

think-typescript

Build Status Coverage Status npm

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'
});