|
1 | 1 | { |
| 2 | + "extends": "../../tsconfig.json", |
2 | 3 | "compilerOptions": { |
3 | | - "target": "ES2020", |
4 | | - "module": "ESNext", |
5 | | - "lib": ["ES2020", "DOM"], |
6 | | - "declaration": true, |
7 | | - "declarationMap": true, |
8 | | - "sourceMap": true, |
9 | | - "outDir": "./dist", |
10 | | - "strict": true, |
11 | | - "noImplicitAny": true, |
12 | | - "strictNullChecks": true, |
13 | | - "strictFunctionTypes": true, |
14 | | - "strictBindCallApply": true, |
15 | | - "strictPropertyInitialization": true, |
16 | | - "noImplicitThis": true, |
17 | | - "useUnknownInCatchVariables": true, |
18 | | - "alwaysStrict": true, |
19 | | - "noUnusedLocals": true, |
20 | | - "noUnusedParameters": true, |
21 | | - "exactOptionalPropertyTypes": true, |
22 | | - "noImplicitReturns": true, |
23 | | - "noFallthroughCasesInSwitch": true, |
24 | | - "noUncheckedIndexedAccess": true, |
25 | | - "noImplicitOverride": true, |
26 | | - "noPropertyAccessFromIndexSignature": true, |
27 | | - "esModuleInterop": true, |
28 | | - "forceConsistentCasingInFileNames": true, |
29 | | - "skipLibCheck": true, |
30 | | - "moduleResolution": "node", |
| 4 | + "moduleResolution": "Bundler", |
31 | 5 | "baseUrl": ".", |
32 | 6 | "paths": { |
33 | 7 | "~/*": ["./src/*"], |
34 | 8 | "~/tests/*": ["./tests/*"], |
35 | 9 | "@firebase-ui/translations": ["../translations/src/index.ts"] |
36 | 10 | } |
37 | 11 | }, |
38 | | - "include": ["src"], |
39 | | - "exclude": ["node_modules", "dist"] |
| 12 | + "include": ["src", "eslint.config.js", "vitest.config.ts", "tsup.config.ts"] |
40 | 13 | } |
0 commit comments