mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-07 13:38:39 +00:00
This webpart can be used to leverage all possible features of mui data tables into your sharepoint lists. which includes modern ui, pagination, expand option and many more.
42 lines
882 B
JSON
42 lines
882 B
JSON
{
|
|
"extends": "./node_modules/@microsoft/rush-stack-compiler-3.3/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",
|
|
"downlevelIteration": true,
|
|
"inlineSources": false,
|
|
"strictNullChecks": false,
|
|
"noUnusedLocals": false,
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./node_modules/@microsoft"
|
|
],
|
|
"types": [
|
|
"es6-promise",
|
|
"webpack-env"
|
|
],
|
|
"lib": [
|
|
"es5",
|
|
"dom",
|
|
"es2015",
|
|
"es2015.collection",
|
|
"ES2017"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"lib"
|
|
]
|
|
} |