|
1 | 1 | {
|
| 2 | + "extends": "../../tsconfig.json", |
2 | 3 | "compilerOptions": {
|
3 |
| - "target": "ES2020", |
4 |
| - "useDefineForClassFields": true, |
5 |
| - "lib": ["ES2020", "DOM", "DOM.Iterable"], |
6 |
| - "module": "ESNext", |
7 |
| - "skipLibCheck": true, |
8 |
| - "types": ["@testing-library/jest-dom"], |
9 |
| - |
10 |
| - /* Bundler mode */ |
11 |
| - "moduleResolution": "bundler", |
12 |
| - "allowImportingTsExtensions": true, |
13 |
| - "isolatedModules": true, |
14 |
| - "moduleDetection": "force", |
15 |
| - "noEmit": true, |
16 | 4 | "jsx": "react-jsx",
|
17 |
| - |
18 |
| - /* Linting */ |
19 |
| - "strict": true, |
20 |
| - "noUnusedLocals": true, |
21 |
| - "noUnusedParameters": true, |
22 |
| - "noFallthroughCasesInSwitch": true, |
23 |
| - "noUncheckedSideEffectImports": true, |
24 |
| - "baseUrl": ".", |
| 5 | + "moduleResolution": "Bundler", |
25 | 6 | "paths": {
|
26 | 7 | "~/*": ["./src/*"],
|
27 | 8 | "~/tests/*": ["./tests/*"],
|
28 | 9 | "@firebase-ui/core": ["../core/src/index.ts"],
|
29 | 10 | "@firebase-ui/styles": ["../styles/src/index.ts"]
|
30 | 11 | }
|
31 | 12 | },
|
32 |
| - "include": ["src", "vite.config.ts", "tests", "./setup-test.ts"] |
| 13 | + "include": ["src", "eslint.config.js", "vite.config.ts", "setup-test.ts"] |
33 | 14 | }
|
0 commit comments