-
-
Save radenkozec/b751ebc9ab46a9f08f21b36f20f862c2 to your computer and use it in GitHub Desktop.
aurelia.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "AureliaWebPack", | |
"type": "project:application", | |
"platform": { | |
"id": "aspnetcore", | |
"displayName": "ASP.NET Core", | |
"output": "wwwroot\\scripts", | |
"baseUrl": "scripts" | |
}, | |
"transpiler": { | |
"id": "babel", | |
"displayName": "Babel", | |
"fileExtension": ".js", | |
"options": { | |
"plugins": [ | |
"transform-es2015-modules-amd" | |
] | |
}, | |
"source": "src\\**\\*.js" | |
}, | |
"markupProcessor": { | |
"id": "none", | |
"displayName": "None", | |
"fileExtension": ".html", | |
"source": "src\\**\\*.html" | |
}, | |
"cssProcessor": { | |
"id": "none", | |
"displayName": "None", | |
"fileExtension": ".css", | |
"source": "src\\**\\*.css" | |
}, | |
"editor": { | |
"id": "visualstudio", | |
"displayName": "Visual Studio" | |
}, | |
"unitTestRunner": { | |
"id": "karma", | |
"displayName": "Karma", | |
"source": "test\\unit\\**\\*.js" | |
}, | |
"paths": { | |
"root": "src", | |
"resources": "src\\resources", | |
"elements": "src\\resources\\elements", | |
"attributes": "src\\resources\\attributes", | |
"valueConverters": "src\\resources\\value-converters", | |
"bindingBehaviors": "src\\resources\\binding-behaviors" | |
}, | |
"testFramework": { | |
"id": "jasmine", | |
"displayName": "Jasmine" | |
}, | |
"build": { | |
"targets": [ | |
{ | |
"id": "aspnetcore", | |
"displayName": "ASP.NET Core", | |
"output": "wwwroot\\scripts", | |
"baseUrl": "scripts" | |
} | |
], | |
"loader": { | |
"type": "require", | |
"configTarget": "vendor-bundle.js", | |
"includeBundleMetadataInConfig": "auto", | |
"plugins": [ | |
{ | |
"name": "text", | |
"extensions": [ | |
".html", | |
".css" | |
], | |
"stub": true | |
} | |
] | |
}, | |
"options": { | |
"minify": "stage & prod", | |
"sourcemaps": "dev & stage" | |
}, | |
"bundles": [ | |
{ | |
"name": "app-bundle.js", | |
"source": [ | |
"[**/*.js]", | |
"**/*.{css,html}" | |
] | |
}, | |
{ | |
"name": "vendor-bundle.js", | |
"prepend": [ | |
"node_modules/bluebird/js/browser/bluebird.core.js", | |
"wwwroot\\scripts/require.js" | |
], | |
"dependencies": [ | |
"aurelia-binding", | |
"aurelia-bootstrapper", | |
"aurelia-dependency-injection", | |
"aurelia-event-aggregator", | |
"aurelia-framework", | |
"aurelia-history", | |
"aurelia-history-browser", | |
"aurelia-loader", | |
"aurelia-loader-default", | |
"aurelia-logging", | |
"aurelia-logging-console", | |
"aurelia-metadata", | |
"aurelia-pal", | |
"aurelia-pal-browser", | |
"aurelia-path", | |
"aurelia-polyfills", | |
"aurelia-route-recognizer", | |
"aurelia-router", | |
"aurelia-task-queue", | |
"aurelia-templating", | |
"aurelia-templating-binding", | |
{ | |
"name": "text", | |
"path": "../wwwroot\\scripts/text" | |
}, | |
{ | |
"name": "aurelia-templating-resources", | |
"path": "../node_modules/aurelia-templating-resources/dist/amd", | |
"main": "aurelia-templating-resources" | |
}, | |
{ | |
"name": "aurelia-templating-router", | |
"path": "../node_modules/aurelia-templating-router/dist/amd", | |
"main": "aurelia-templating-router" | |
}, | |
{ | |
"name": "aurelia-testing", | |
"path": "../node_modules/aurelia-testing/dist/amd", | |
"main": "aurelia-testing", | |
"env": "dev" | |
} | |
] | |
} | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment