invoke-prompt-editor-demo/tsconfig.json

36 lines
760 B
JSON

{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"paths": {
"@material-ui/*": ["./node_modules/@material-ui/core/esm/*"],
},
"typeRoots": [
"node_modules/@types",
],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"sourceMap": false,
},
"include": [
// "vite.config.ts",
"src",
// "../../setupTests.ts"
]
}