123456789101112131415161718192021222324252627282930 |
- {
- "compilerOptions": {
- "target": "esnext",
- "module": "esnext",
- "lib": ["ES2022"],
- "moduleResolution": "node",
- "rootDir": ".",
- "outDir": "build",
- "allowSyntheticDefaultImports": true,
- "esModuleInterop": true,
- "importHelpers": true,
- "alwaysStrict": false,
- "sourceMap": true,
- "forceConsistentCasingInFileNames": true,
- "noFallthroughCasesInSwitch": true,
- "noImplicitReturns": true,
- "noUnusedLocals": false,
- "noUnusedParameters": true,
- "noImplicitAny": false,
- "noImplicitThis": false,
- "strictNullChecks": false,
- "resolveJsonModule": true,
- "skipLibCheck": true
- },
- "tsc-alias": {
- "resolveFullPaths": true,
- "verbose": false
- },
- "include": ["src/**/*", "__tests__/**/*"]
- }
|