// webpack.config.jsconst path = require('path')const HtmlWebpackPlugin = require('html-webpack-plugin')module.exports = {mode: 'development',entry: './src/app.ts',output: {filename: 'app.bundle.js',path: path.resolve(__dirname, './dist'),clean: true},plugins: [new HtmlWebpackPlugin()],module: {rules: [{test: /\.ts$/,exclude: /node_modules/,use: 'ts-loader'}]}}
// tsconfig.json// npx tsc --init"rootDir": "./src","outDir": "./dist",
查找、下载安装第三方库的类型声明
https://www.typescriptlang.org/dt/search?search=
