2026-03-09 13:02:11 -07:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"useDefineForClassFields": true,
|
2026-07-10 21:15:53 -04:00
|
|
|
"lib": ["ES2020", "ES2022", "DOM", "DOM.Iterable"],
|
2026-03-09 13:02:11 -07:00
|
|
|
"module": "ESNext",
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"paths": {
|
2026-06-09 09:53:09 -07:00
|
|
|
"@/*": ["./src/*"],
|
2026-08-17 11:23:28 -04:00
|
|
|
"@features-manifest": ["../preview-features.json"],
|
|
|
|
|
"@model-capabilities-manifest": ["../scripts/model-capabilities.json"]
|
2026-03-09 13:02:11 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/* Bundler mode */
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
|
|
|
|
|
/* Linting */
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true
|
|
|
|
|
},
|
|
|
|
|
"include": ["src"],
|
|
|
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
|
|
|
}
|