1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "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"
- ]
- }
|