mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-07 21:48:24 +00:00
* Adding react-teams-tab-field-visit-mashup sample * Update to new (still Beta) Graph call to post msg * Update readme w/telemetry merged * Generated web part * Quick UI update * Now configures a tab! * Updated property panel for multiple tab handling * Roughed out new tab name properties * Added multi-tab property handling * Roughed out tab picking * Added link selection to UI * Clean up UI, property validation * Actually works configuring tabs * Split out React components * Now handles redirect query * Localized redirect message * Added documentation
39 lines
837 B
JSON
39 lines
837 B
JSON
{
|
|
"extends": "./node_modules/@microsoft/rush-stack-compiler-2.9/includes/tsconfig-web.json",
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"jsx": "react",
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"experimentalDecorators": true,
|
|
"skipLibCheck": true,
|
|
"outDir": "lib",
|
|
"inlineSources": false,
|
|
"strictNullChecks": false,
|
|
"noUnusedLocals": false,
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./node_modules/@microsoft"
|
|
],
|
|
"types": [
|
|
"es6-promise",
|
|
"webpack-env"
|
|
],
|
|
"lib": [
|
|
"es5",
|
|
"dom",
|
|
"es2015.collection"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"lib"
|
|
]
|
|
}
|