Files
react-test/docs/tsconfig.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
473 B
JSON
Raw Permalink Normal View History

2025-12-12 14:26:25 +09:00
{
"extends": "../tsconfig.json",
"compilerOptions": {
"allowJs": true,
"isolatedModules": true,
"moduleResolution": "bundler",
"noEmit": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"esModuleInterop": true,
"incremental": true,
"jsx": "preserve"
},
"include": ["next-env.d.ts", "next.config.ts", "types", "src", "pages", "data"],
"exclude": ["docs/.next", "docs/export", "node_modules"]
}