22 lines
533 B
JSON
22 lines
533 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"allowJs": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"noUnusedLocals": false,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"types": ["node", "vitest/globals"],
|
||
|
|
"target": "ES2020",
|
||
|
|
"module": "nodenext",
|
||
|
|
"moduleResolution": "nodenext",
|
||
|
|
"strict": true,
|
||
|
|
"paths": {
|
||
|
|
"@mui/internal-docs-utils": ["../../packages-internal/docs-utils/src"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": ["./**/*.ts", "./**/*.js"],
|
||
|
|
"exclude": ["node_modules"]
|
||
|
|
}
|