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/examples/movies/tsconfig.json

34 lines
715 B
JSON

{
"compilerOptions": {
"rootDir": "src",
"outDir": "build",
"module": "esnext",
"target": "es6",
"lib": [
"dom",
"es2020"
],
"jsx": "react",
"moduleResolution": "node",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"isolatedModules": true,
"pretty": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"noEmit": true,
"strict": true,
"strictNullChecks": true,
"allowSyntheticDefaultImports": true,
"declaration": true
},
"include": [
"src"
]
}