Dmitriy Pleshevskiy
e9c18c9fea
feat(context): add context for request feat(client): add hook for get memo rest client feat(endpoint): add endpoint object for configure rest methods feat(request): add request hook refac(request): return cached data for same query refac(request): remove void variables for endpoints feat(request): add headers to request cache
22 lines
535 B
JSON
22 lines
535 B
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "src",
|
|
"outDir": "target",
|
|
"module": "esnext",
|
|
"target": "es6",
|
|
"lib": ["dom", "es2020"],
|
|
"jsx": "react",
|
|
"moduleResolution": "node",
|
|
"pretty": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": true,
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
}
|