2020-02-26 20:00:59 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
2021-02-14 13:44:11 +03:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2020-02-26 20:00:59 +03:00
|
|
|
"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,
|
2021-02-17 05:51:46 +03:00
|
|
|
"noUnusedLocals": false,
|
2020-08-27 20:05:09 +03:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2020-08-27 20:24:03 +03:00
|
|
|
"noImplicitAny": true,
|
2020-08-27 20:05:09 +03:00
|
|
|
"noImplicitThis": true,
|
|
|
|
"noImplicitReturns": true,
|
2020-02-26 20:00:59 +03:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
2021-03-30 10:51:37 +03:00
|
|
|
"jsx": "react-jsx",
|
2020-02-26 20:00:59 +03:00
|
|
|
"downlevelIteration": true,
|
2020-05-08 20:48:05 +03:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2021-02-14 13:44:11 +03:00
|
|
|
"types": ["react-spring", "jest"],
|
2020-11-03 18:16:38 +03:00
|
|
|
"baseUrl": "src"
|
2020-02-26 20:00:59 +03:00
|
|
|
},
|
2021-02-14 13:44:11 +03:00
|
|
|
"exclude": ["node_modules", "cypress"],
|
|
|
|
"include": ["./src/**/*.ts", "./src/**/*.tsx", "src/components/Confetti/index.js"]
|
2020-02-26 20:00:59 +03:00
|
|
|
}
|