required.js 448 B

12345678910111213141516171819202122
  1. // Copyright (c) Microsoft Corporation.
  2. // Licensed under the MIT License.
  3. /**
  4. * Default SDL required config for all applications.
  5. */
  6. "use strict";
  7. module.exports = {
  8. plugins: [
  9. "@microsoft/sdl"
  10. ],
  11. extends: [
  12. "plugin:@microsoft/sdl/angular",
  13. "plugin:@microsoft/sdl/angularjs",
  14. "plugin:@microsoft/sdl/common",
  15. "plugin:@microsoft/sdl/electron",
  16. "plugin:@microsoft/sdl/node",
  17. "plugin:@microsoft/sdl/react"
  18. ]
  19. }