Sergej Schwabauer b4861f5bdb Add 'samples/react-interactive-map/' from commit '37b5f45bc98102a631f16b26a67b01d22a7765e6'
git-subtree-dir: samples/react-interactive-map
git-subtree-mainline: e43943f69e764dc178745822d99a34d28dc51032
git-subtree-split: 37b5f45bc98102a631f16b26a67b01d22a7765e6
2022-10-14 12:21:31 +02:00

41 lines
881 B
JSON

{
"extends": "./node_modules/@microsoft/rush-stack-compiler-3.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",
"baseUrl": ".",
"paths": {
"@src/*": ["src/*"],
"@webparts/*": ["src/webparts/*"]
},
"inlineSources": false,
"strictNullChecks": false,
"noUnusedLocals": false,
"typeRoots": [
"./node_modules/@types",
"./node_modules/@microsoft"
],
"types": [
"webpack-env"
],
"lib": [
"es5",
"dom",
"es2015.collection",
"es2015.promise"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx"
]
}