{ "compilerOptions": { "target": "ES2022", "lib": ["ES2023", "DOM", "DOM.Iterable"], "module": "ESNext", "moduleResolution": "Bundler", "jsx": "react-jsx", "strict": true, "skipLibCheck": true, "esModuleInterop": true, "verbatimModuleSyntax": true, "noUncheckedIndexedAccess": true, "resolveJsonModule": true, "isolatedModules": true, "allowJs": true, "checkJs": false, "noEmit": true, "types": ["vite/client"], "paths": { "@/*": ["./src/*"] } }, "include": [ "src", "server", // A BARE directory name that starts with a dot is silently skipped by tsc, so the // previous `.storybook` entry typechecked nothing at all. The glob is what pulls it in. ".storybook/**/*", "vite.config.ts", "vite.storybook.config.ts", "orval.config.ts" ] }