Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
22 lines
537 B
JSON
22 lines
537 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"target": "ES2022",
|
|
"jsx": "react-jsx",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"types": ["vite/client", "vitest/globals", "@testing-library/jest-dom"],
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"src/renderer/src/**/*.ts",
|
|
"src/renderer/src/**/*.tsx",
|
|
"src/shared/**/*.ts"
|
|
]
|
|
}
|