sp-dev-fx-webparts/samples/js-advanced-commenting/tsconfig.json

38 lines
818 B
JSON
Raw Normal View History

{
2022-10-06 12:59:20 -04:00
"extends": "./node_modules/@microsoft/rush-stack-compiler-4.5/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",
2022-10-06 12:59:20 -04:00
"noImplicitAny": false,
"inlineSources": false,
"strictNullChecks": false,
"noUnusedLocals": false,
"typeRoots": [
"./node_modules/@types",
"./node_modules/@microsoft"
],
"types": [
2022-10-06 12:59:20 -04:00
"webpack-env",
],
"lib": [
"es5",
"dom",
2022-10-06 12:59:20 -04:00
"es2015.collection",
"es2015.promise"
]
},
"include": [
2022-10-06 12:59:20 -04:00
"src/**/*.ts",
"src/**/*.tsx"
],
2022-10-06 12:59:20 -04:00
"exclude": []
}