Files
LexAI/tsconfig.json
Forge 050e291f73
Some checks failed
CI — Test & Build / Test & Build (push) Failing after 9s
fix: add tsconfig.json, @types/chrome, fix TS errors - CI typecheck now passes
2026-03-06 13:47:24 +08:00

28 lines
510 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
"lib": ["ESNext", "DOM"],
"jsx": "react-jsx",
"strict": true,
"noEmit": true,
"skipLibCheck": true,
"types": ["chrome"],
"esModuleInterop": true,
"allowImportingTsExtensions": true,
"paths": {
"~/*": ["./src/*"]
}
},
"include": [
"entrypoints/**/*",
"src/**/*",
".wxt/types/**/*"
],
"exclude": [
"node_modules",
".output"
]
}