mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-06 04:58:39 +00:00
f583732935
* Initial version * Added more property pane fields * Fixed recent tab style * Update RecentFilesTab.module.scss * Update RecentFilesTab.tsx * Fixed an issue with unitialized PnP causing wrong API url * Update package-solution.json * Cleaned up code and comments. * Update FileBrowser.tsx * Update FileBrowser.types.ts * Update DocumentLibraryBrowser.tsx * Update RecentFilesTab.tsx * Added OneDrive support * Fixed a little speelliing mistake
37 lines
746 B
JSON
37 lines
746 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": { "*": ["types/*"] },
|
|
"target": "es5",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"jsx": "react",
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"experimentalDecorators": true,
|
|
"skipLibCheck": true,
|
|
"outDir": "lib",
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./node_modules/@microsoft"
|
|
],
|
|
"types": [
|
|
"es6-promise",
|
|
"webpack-env"
|
|
],
|
|
"lib": [
|
|
"es5",
|
|
"dom",
|
|
"es2015.collection"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts", "src/controls/PropertyPaneFilePicker/WebSearchTab/SearchResultTile.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"lib"
|
|
]
|
|
}
|