目录结构1
2
3
4
5
6
7
8
9webpack-demo
|- tsconfig.json
|- webpack.config.js
|- /dist
|- bundle.js
|- index.html
|- /src
|- index.ts
|- /node_modules
tsconfig1
2
3
4
5
6
7
8
9
10
11{
"compilerOptions": {
"outDir": "./dist/",
"noImplicitAny": true,
"module": "es6",
"target": "es5",
"jsx": "react",
"allowJs": true,
"sourceMap":true
}
}