mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-07 21:48:24 +00:00
fc842f9120
* 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
17 lines
315 B
JSON
17 lines
315 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "commonjs",
|
|
"jsx": "react",
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"experimentalDecorators": true,
|
|
"types": [
|
|
"es6-promise",
|
|
"es6-collections",
|
|
"webpack-env"
|
|
]
|
|
}
|
|
}
|