Stefan Bauer e6afa9ad4f HandlebarJS sample using webpack loader configuration (#142)
* handlebarsjs webpack loader sample

* removed trashed folder
2017-03-07 22:57:26 +02:00

20 lines
616 B
JSON

{
"entries": [{
"entry": "./lib/webparts/handlebarsDemo/HandlebarsDemoWebPart.js",
"manifest": "./src/webparts/handlebarsDemo/HandlebarsDemoWebPart.manifest.json",
"outputPath": "./dist/handlebars-demo.bundle.js"
}],
"externals": {
// Load Handlebar templates from CDN
// "handlebars": "https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/4.0.6/handlebars.amd.js"
// load handlebars from node_modules
"handlebars": "./node_modules/handlebars/dist/handlebars.amd.min.js"
},
"localizedResources": {
"handlebarsDemoStrings": "webparts/handlebarsDemo/loc/{locale}.js"
}
}