@shko.online/componentframework-mock
Version:
Mocking library to help with testing PowerApps Component Framework Components
39 lines • 894 B
JSON
{
"compilerOptions": {
"jsx": "react",
"allowSyntheticDefaultImports": true,
"allowJs": true,
"esModuleInterop": true,
"target": "es5",
"lib": [
"es5",
"es6",
"dom"
],
"module": "ES6",
"moduleResolution": "node",
"noEmit": false,
"outDir": "lib",
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"baseUrl": ".",
"paths": {
"@shko.online/componentframework-mock*": [
"./src*"
]
}
},
"exclude": [
"node_modules",
"wwwroot",
"lib"
],
"include": [
"src",
"__tests__",
"__type-tests__",
"__test-components__"
]
}