a538bf0b69
* build: add caching to eslint * build: add caching to jest * build: add caching to tsc * build: add caching to actions * fix: upgrade upload-artifact to v3 * build: update craco eslint cacheLocation * build: target ESNext for dev * merge again
34 lines
941 B
JSON
34 lines
941 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"alwaysStrict": true,
|
|
"baseUrl": "src",
|
|
"composite": true,
|
|
"downlevelIteration": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"noEmit": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": false,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"target": "ESNext",
|
|
"tsBuildInfoFile": "node_modules/.cache/.tsbuildinfo",
|
|
"types": ["jest"],
|
|
"useUnknownInCatchVariables": false
|
|
},
|
|
"exclude": ["node_modules", "cypress"],
|
|
"include": ["src/**/*", "src/**/*.json"]
|
|
}
|