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

23 lines
531 B
JSON

{
"compilerOptions": {
"rootDir": "src",
"outDir": "target",
"module": "commonjs",
"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",
]
}