Update to latest @extollo/lib & add contact API

This commit is contained in:
2022-11-14 19:49:34 -06:00
parent 155886eb39
commit ac1d221f38
11 changed files with 1010 additions and 575 deletions

View File

@@ -1,14 +1,17 @@
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"declaration": true,
"outDir": "./lib",
"strict": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"lib": ["ESNext"]
},
"include": ["src"],
"exclude": ["node_modules", "src/app/resources", "../extollo/lib"]
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"declaration": true,
"outDir": "./lib",
"strict": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"lib": ["esnext", "dom", "dom.iterable"],
"preserveSymlinks": true,
"jsx": "react",
"reactNamespace": "JSX"
},
"include": ["src"]
}