123456789101112131415161718192021222324252627 |
- {
- "compilerOptions": {
- "allowJs": true,
- "allowSyntheticDefaultImports": true,
- "baseUrl": ".",
- "esModuleInterop": true,
- "forceConsistentCasingInFileNames": true,
- "importHelpers": true,
- "jsx": "react",
- "lib": ["dom", "esnext"],
- "module": "esnext",
- "moduleResolution": "node",
- "noImplicitAny": true,
- "noImplicitReturns": true,
- "noImplicitThis": true,
- "noUnusedLocals": true,
- "outDir": "./dist",
- "pretty": true,
- "skipLibCheck": true,
- "sourceMap": true,
- "strictNullChecks": true,
- "suppressImplicitAnyIndexErrors": true,
- "target": "es5"
- },
- "include": ["./src/**/*", "./spec/**/*"]
- }
|