* refactor dexie services for future schema updates Co-authored-by: Jeremy Letto <jeremy.letto@datasite.com>
30 lines
613 B
JSON
30 lines
613 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "src",
|
|
"target": "es6",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"esnext"
|
|
],
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"noFallthroughCasesInSwitch": false
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|