This repository has been archived on 2023-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
react-rest-request/tsconfig.json
Dmitriy Pleshevskiy 243f4f77e5 feat!(client): add client fetch based
breaking!(context): client prop instead base url
refac: change axios response to client response
chore(deps): remove axios
chore: update example

Closes #2
2020-11-05 00:23:57 +03:00

23 lines
530 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"
],
}