使用汇总生成打字稿定义文件

BkS*_*ouX 8 rollup typescript webpack typescript-typings

我正在尝试使用汇总 js 来构建我的打字稿项目,但我不知道如何生成定义文件以及如何将它们自动包含在 dist 文件中。

有谁知道怎么做?

这是我的 rollup.config.js

import typescript from "rollup-plugin-typescript";
import handlebars from "rollup-plugin-handlebars";
import babel from 'rollup-plugin-babel';

export default {
  entry: 'src/generator.ts',
  format: 'cjs',
  plugins: [
    typescript(),
    handlebars(),
    babel()
  ],
  dest: 'dist/bundle.js'
};
Run Code Online (Sandbox Code Playgroud)

我正在使用默认的 ts 配置,但这与声明 = true 相同。

编辑 :

还尝试使用 Webpack :

    module.exports = {
      context: __dirname + '/src',
      entry: {
        index: './generator'
      },
      output: {
        path: __dirname + '/build',
        publicPath: '/',
        filename: 'generator.js'
      },
      resolve: {
        root: __dirname,
        extensions: ['', '.ts', '.js']
      },
      module: {
        loaders: [
          { test: /\.ts$/, loaders: ['ts-loader'], exclude: /node_modules/ },
          { test: /\.hbs/, loaders: ['handlebars-loader'], exclude: /node_modules/ }
        ]
      }
    }
Run Code Online (Sandbox Code Playgroud)

配置:

    {
      "compilerOptions": {
        "target": "es5",
        "module": "commonjs",
        "declaration": true,
        "outDir": "build"
      },
      "exclude": [
        "node_modules",
        "dist",
        "build"
      ]
    }
Run Code Online (Sandbox Code Playgroud)

生成 d.ts 看起来像这样:

    import { ExportPageModel } from './models/page-model';
    export declare type ExportType = 'text' | 'html';
    export * from './models/page-model';
    export declare namespace Generator {
        function generateHtml(page: ExportPageModel): string;
        function generateText(page: ExportPageModel): string;
    }
Run Code Online (Sandbox Code Playgroud)

但是在我使用该包的应用程序中,它找不到生成器...

import { ExportPageModel, Generator } from 'emlb-generator';
Run Code Online (Sandbox Code Playgroud)

生成器未定义,但自动完成工作正常,所以我找不到问题出在哪里:(

Generator.generateHtml({
 ...
});
Run Code Online (Sandbox Code Playgroud)

Thi*_*tim 5

要完成此任务,您将向 中添加说明rollup.config.jstsconfig.json并且package.json

考虑汇总版本^0.62.0"

1 - 添加库rollup-plugin-typescript2

npm i rollup-plugin-typescript2

2 - 导入库里面 rollup.config.js

从'rollup-plugin-typescript2'导入打字稿

3 - 在插件块中包含打字稿插件

注意:下面的 js 只是一个例子,所以我删除了其他说明只是为了让例子更清晰......

import typescript from 'rollup-plugin-typescript2'

export default {
  input: 'src/index.tsx',
  output: [
    {
      file: pkg.main,
      format: 'cjs',
      exports: 'named',
      sourcemap: true
    },
    {
      file: pkg.module,
      format: 'es',
      exports: 'named',
      sourcemap: true
    }
  ],
  plugins: [
    typescript({
      rollupCommonJSResolveHack: false,
      clean: true,
    })
  ]
}
Run Code Online (Sandbox Code Playgroud)

4 -添加declaration指令中compilerOptionstsconfig.json

注意:我删除了其他说明只是为了让示例更清晰......

例子:

{
  "compilerOptions": {
    "declaration": true,
  },
  "include": ["src"],
  "exclude": ["node_modules", "build", "dist", "example", "rollup.config.js"]
}
Run Code Online (Sandbox Code Playgroud)

5 - 在里面包含mainmodule指令package.json以告知输出的位置。

和finnaly,包括rollup -c内部的指令script中的package.json,例如:

{
  "name": "example",
  "version": "0.1.6",
  "description": "Testing",
  "author": "Example",
  "license": "AGPL-3.0-or-later",
  "main": "dist/index.js",
  "module": "dist/index.es.js",
  "jsnext:main": "dist/index.es.js",
  "scripts": {
    "build": "rollup -c",
    "start": "rollup -c -w"
  },
  "files": [
    "dist"
  ]
}
Run Code Online (Sandbox Code Playgroud)


bas*_*rat -3

使用汇总的打字稿定义文件

强烈建议您仅使用tsc. 保留最终应用程序捆绑的汇总。

例子

例如,检查 typestyle 中的构建https://github.com/typestyle/typestyle/blob/2349f847abaaddaf3de4ca83f585d293b766959e/package.json#L10