Velin Georgiev fc842f9120 Sample that shows appSettings.json similar to Web.config appSettings (#278)
* This sample shows how appSettings.json file can be added and unsed within SharePoint Framewrok webparts similar to the Web.config / App.config key value app settings in .NET Framework projects.

* Update README.md

Typos fix
2017-08-07 16:59:08 +03:00

13 lines
323 B
JavaScript

'use strict';
const gulp = require('gulp');
const build = require('@microsoft/sp-build-web');
/**
* Checks if the app settings match in both the appSettings.json and appSettings.d.ts.
*/
const verifyAppSettings = require('./src/appSettingsGulp.js');
build.rig.addBuildTasks(verifyAppSettings);
build.initialize(gulp);