mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-06 13:08:23 +00:00
b0204bd14b
* commit first * Update README.md * Update README.md * first commit * Change Docs * Update README.md * Update README.md * Update Calendar Web Part * Update README.md * Update README.md * Update Docs * Update - Suport Create Event in SiteTimeZone * update Docs * update docs * Update comments * upd default start/end dates on prop panel * update Prop * upd default props panel * upd comments
39 lines
799 B
JSON
39 lines
799 B
JSON
{
|
|
"extends": "./node_modules/@microsoft/rush-stack-compiler-3.2/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"
|
|
]
|
|
}
|