26 lines
578 B
JSON
26 lines
578 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"target": "ES2020",
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@renderer/*": ["src/renderer/src/*"]
|
|
},
|
|
"outDir": "./out/types-web"
|
|
},
|
|
"include": [
|
|
"src/renderer/src/**/*",
|
|
"src/preload/index.d.ts",
|
|
"src/shared/**/*"
|
|
]
|
|
}
|