uniswap-interface-uncensored/tsconfig.json

31 lines
868 B
JSON
Raw Normal View History

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