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