1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26{
"extends": "../tsconfig.json",
"compilerOptions": {
"allowJs": true,
/* files are emitted by babel */
"noEmit": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"esModuleInterop": true,
"incremental": true,
"jsx": "preserve",
"types": ["@mui/internal-test-utils/initMatchers", "vitest/globals", "next"]
},
"include": [
"next-env.d.ts",
"next.config.mjs",
"docs-env.d.ts",
"src",
"pages/**/*.ts*",
"data",
"../test/utils/addChaiAssertions.ts"
],
"exclude": ["docs/.next", "docs/export", "pages/playground"]
}