| 123456789101112131415161718192021 |
- {
- "extends": "../../tsconfig.json",
- "include": [
- "src/**/*.ts",
- "src/**/*.tsx"
- ],
- "exclude": [
- "dist",
- "node_modules"
- ],
- "compilerOptions": {
- "rootDirs": [".", "stories"],
- "module": "esnext",
- "outDir": "dist",
- "declaration": true,
- "noImplicitAny": true,
- "strictNullChecks": true,
- "typeRoots": ["./node_modules/@types", "types"],
- "skipLibCheck": true // Temp workaround for Duplicate identifier tsc errors
- },
- }
|