uniswap-interface-uncensored/tsconfig.json

32 lines
914 B
JSON
Raw Permalink Normal View History

{
"compilerOptions": {
"target": "es5",
2021-02-14 10:44:11 +00:00
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
2020-08-27 13:10:00 -05:00
"strict": true,
"alwaysStrict": true,
"strictNullChecks": true,
2021-02-16 21:51:46 -05:00
"noUnusedLocals": false,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"useUnknownInCatchVariables": false,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"downlevelIteration": true,
"allowSyntheticDefaultImports": true,
2021-02-14 10:44:11 +00:00
"types": ["react-spring", "jest"],
2020-11-03 16:16:38 +01:00
"baseUrl": "src"
},
2021-02-14 10:44:11 +00:00
"exclude": ["node_modules", "cypress"],
"include": ["./src/**/*.ts", "./src/**/*.tsx", "src/components/Confetti/index.js"]
}