12345678910111213141516171819202122232425262728293031 |
- {
- "compilerOptions": {
- "target": "ESNext",
- "lib": ["dom", "dom.iterable", "esnext"],
- "strictNullChecks": true,
- "allowJs": true,
- "skipLibCheck": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "strict": true,
- "forceConsistentCasingInFileNames": true,
- "noFallthroughCasesInSwitch": true,
- "module": "esnext",
- "moduleResolution": "node",
- "resolveJsonModule": true,
- "isolatedModules": true,
- "noEmit": true,
- "jsx": "react-jsx"
- },
- "extends": "./tsconfig.paths.json",
- "exclude": ["node_modules", "cypress.config.ts"],
- "include": [
- "packages/app/src",
- "packages/app/__tests__",
- "packages/webpack/bin",
- "packages/webpack/scripts",
- "packages/webpack/config",
- ".eslintrc.cjs",
- "./commitlint.config.cjs"
- ]
- }
|