mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 03:32:21 +08:00
27 lines
527 B
JavaScript
27 lines
527 B
JavaScript
module.exports = {
|
|
entry: [
|
|
"es6-shim",
|
|
"zone.js",
|
|
"reflect-metadata",
|
|
"web-animations.min",
|
|
],
|
|
module: {
|
|
loaders: [
|
|
{
|
|
test: /\.ts$/,
|
|
loader: "awesome-typescript-loader",
|
|
include: /\/demos\//,
|
|
exclude: /node_modules/
|
|
}
|
|
]
|
|
},
|
|
resolve: {
|
|
modulesDirectories: [
|
|
"node_modules",
|
|
"dist/src/es5/common", // ionic-framework npm package (stable)
|
|
"dist/js" // for web-animations polyfill
|
|
],
|
|
extensions: ["", ".js", ".ts"]
|
|
}
|
|
};
|