123456789101112131415161718192021222324252627282930313233343536 |
- {
- "compilerOptions": {
- "target": "es5",
- "rootDirs": [
- "src",
- "stories"
- ],
- "lib": [
- "dom",
- "dom.iterable",
- "esnext"
- ],
- "allowJs": true,
- "skipLibCheck": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "strict": true,
- "forceConsistentCasingInFileNames": true,
- "module": "esnext",
- "moduleResolution": "node",
- "resolveJsonModule": true,
- "isolatedModules": true,
- "noEmit": true,
- "jsx": "react"
- },
- "baseUrl": ".",
- "paths": {
- "@/*": ["src/*"],
- "@components/*": [ "src/components/*" ]
- },
- "include": [
- "src/**/*",
- "stories/**/*"
- ]
- }
|