mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-09-08 07:52:12 +03:00
Poda árvores não-produção nos excludes do NFT trace e no tsconfig, com teste próprio atualizado. Validado no worktree combinado. Obrigado!
70 lines
1.5 KiB
JSON
70 lines
1.5 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"incremental": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@omniroute/open-sse": ["./open-sse"],
|
|
"@omniroute/open-sse/*": ["./open-sse/*"],
|
|
"@omniroute/browser-pool": ["./packages/browser-pool/src"]
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
]
|
|
},
|
|
"include": [
|
|
"next-env.d.ts",
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"**/*.js",
|
|
"**/*.jsx",
|
|
".next/types/**/*.ts",
|
|
".next/dev/types/**/*.ts",
|
|
".next/dev/dev/types/**/*.ts",
|
|
".next-playwright/types/**/*.ts",
|
|
".next-playwright/dev/types/**/*.ts",
|
|
".build/next/types/**/*.ts",
|
|
".build/next/dev/types/**/*.ts",
|
|
".build/next/dev/dev/types/**/*.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"electron/node_modules",
|
|
"electron/dist-electron",
|
|
".build",
|
|
"open-sse",
|
|
"dist",
|
|
"coverage",
|
|
".source",
|
|
".tmp",
|
|
".claude",
|
|
".worktrees",
|
|
"@omniroute",
|
|
"_tasks",
|
|
"_ideia",
|
|
"_mono_repo",
|
|
"_references",
|
|
".opencode",
|
|
".scratch",
|
|
".agents",
|
|
".slim",
|
|
"packages"
|
|
]
|
|
}
|