Files
ERitors-Scribe-Desktop/tsconfig.json
natreex c9cf99e166 Update imports and Electron compatibility
- Removed unnecessary React imports.
- Adjusted package.json scripts for Electron integration.
- Updated components to replace Next.js-specific imports with Electron-compatible alternatives.
- Minor tsconfig.json changes for better compatibility.
2025-11-16 11:55:52 -05:00

60 lines
1.1 KiB
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"lib": [
"ES2022",
"DOM"
],
"moduleResolution": "bundler",
"resolveJsonModule": true,
"allowJs": true,
"checkJs": false,
"outDir": "dist",
"rootDir": ".",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"isolatedModules": true,
"jsx": "react-jsx",
"incremental": true,
"paths": {
"@/*": [
"./*"
]
},
"noEmit": true,
"plugins": [
{
"name": "next"
}
]
},
"include": [
"app/**/*",
"components/**/*",
"context/**/*",
"lib/**/*",
"public/**/*",
"fonts/**/*",
"electron/**/*",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": [
"node_modules",
"dist",
".next",
"out"
]
}