2020-02-26 12:00:59 -05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
2020-09-24 11:18:57 -05: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,
|
2020-08-27 12:05:09 -05:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2020-08-27 12:24:03 -05:00
|
|
|
"noImplicitAny": true,
|
2020-08-27 12:05:09 -05:00
|
|
|
"noImplicitThis": true,
|
|
|
|
"noImplicitReturns": true,
|
2020-02-26 12:00:59 -05:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"downlevelIteration": true,
|
2020-05-08 13:48:05 -04:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2020-09-24 11:18:57 -05:00
|
|
|
"types": ["react-spring", "jest"]
|
2020-02-26 12:00:59 -05:00
|
|
|
},
|
2020-09-24 11:18:57 -05:00
|
|
|
"exclude": ["node_modules", "cypress"],
|
|
|
|
"include": ["./src/**/*.ts", "./src/**/*.tsx", "src/components/Confetti/index.js"]
|
2020-02-26 12:00:59 -05:00
|
|
|
}
|