Mirror of https://github.com/roostorg/osprey
github.com/roostorg/osprey
1{
2 "extends": "./base-tsconfig.json",
3 "compilerOptions": {
4 "target": "es5",
5 "lib": ["dom", "dom.iterable", "esnext"],
6 "downlevelIteration": true,
7 "allowJs": true,
8 "skipLibCheck": true,
9 "esModuleInterop": true,
10 "allowSyntheticDefaultImports": true,
11 "strict": true,
12 "importsNotUsedAsValues": "remove",
13 "forceConsistentCasingInFileNames": true,
14 "module": "esnext",
15 "moduleResolution": "node",
16 "resolveJsonModule": true,
17 "isolatedModules": true,
18 "noEmit": true,
19 "jsx": "react-jsx",
20 "noFallthroughCasesInSwitch": true
21 },
22 "include": ["src"]
23}