我正在使用以下结构编写Typescript库:
和文件内容:
restApi.class.ts
import { restApiOptions } from '../models/rest.options.model';
import { StoreMethods } from '../routes/store.methods.class';
import { UserMethods } from '../routes/user.methods.class';
export class RestApi {
public storeRest: StoreMethods;
public userRest: UserMethods;
constructor(private restApiOptions: restApiOptions) {
.....
}
setLanguage(langId: number){
.....
}
}
store.methodds.class.ts
import { Observable } from 'rxjs';
import { restApiOptions } from '../models/rest.options.model';
import { routeMethods } from '../core/routeMethods.interface';
export class StoreMethods implements routeMethods {
constructor(private restApiOptions: restApiOptions) {
.....
}
setLanguage(languageId: number){
......
}
getStore(storeId: number): Observable<any> {
.....
}
}
和 public_api.ts
export { RestApi } from './lib/core/restApi.class'
该库旨在用作Angular2 +项目中的依赖项,因此我有一个tsconfig文件,并带有下一个配置以编译它并生成定义文件
{
"compilerOptions": {
"outDir": "./dist/",
"declaration": true,
"module": "commonjs",
"target": "es5",
"lib": [
"es2017",
"dom",
"es2015",
"es5",
"es6"
]
},
"exclude": [
"node_modules",
]
}
我遇到的问题是,该库也需要以“老式方式”在纯es5 javascript项目中使用,也就是说,将javascript库文件包含在script标记中并以这种方式使用:
var myRestApi = new RestApi(options)
我正在使用webpack将所有文件组合到一个bundle.js文件中,但是生成此文件并将其包含在项目中后,我无权访问RespApi类。
这是我的webpack.config.js
const path = require('path');
module.exports = [{
entry: './src/public_api.ts',
module: {
rules: [{
test: /\.tsx?$/,
use: [{
loader : 'ts-loader',
options:{
configFile : 'tsconfig.json'
}
}],
exclude: /node_modules/
}]
},
resolve: {
extensions: ['.ts', '.js', '.tsx']
},
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dev')
}
}];
是否可以将库转换为单个javascript文件并从全局访问RestApi类?
答案 0 :(得分:1)
在webpack的网站上有一个官方guide。我建议您阅读。
这是备忘单。在您的webpack.config.js
中添加两个字段。
webpackConfig.output.library = "RestApi"
webpackConfig.output.libraryTarget = "var"
虽然有一个短片。因为您将模块导出为public_api.js
中的命名模块,所以用户只能通过window.RestApi.RestApi
访问它。如果不做实验,我不确定如何解决这个问题。