mirror of
https://github.com/nexu-io/open-design.git
synced 2026-06-01 03:14:35 +07:00
* test(e2e): gate beta mac packaged runtime * test(e2e): separate ui automation layout * test(e2e): move localized content coverage * chore(release): prepare packaged 0.4.1 beta validation * test(e2e): keep ui lane playwright-only * fix(web): keep chat recoverable after conversation load failure * fix(desktop): honor native mac quit
35 lines
858 B
JSON
35 lines
858 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"jsx": "react-jsx",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["lib/*.ts"]
|
|
},
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"allowImportingTsExtensions": true,
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"types": ["node", "vitest"]
|
|
},
|
|
"include": [
|
|
"playwright.config.ts",
|
|
"vitest.config.ts",
|
|
"lib/**/*.ts",
|
|
"resources/**/*.ts",
|
|
"scripts/**/*.ts",
|
|
"specs/**/*.ts",
|
|
"tests/**/*.ts",
|
|
"ui/**/*.ts"
|
|
],
|
|
"exclude": ["node_modules", "reports", ".od-data"]
|
|
}
|