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"
|
||
|
]
|
||
|
}
|