Files
teleport/tsconfig.node.json
ravicious f5ca6e0637 Add @typescript/native-preview for type checking (#62021)
* Add tsgo

* Fix type errors that come from updated std lib types in TS 7.0

* Upgrade `@typescript/native-preview`
2026-03-03 13:55:31 +00:00

22 lines
483 B
JSON

{
"compilerOptions": {
"outDir": "build.assets/.cache/ts",
"composite": true,
"emitDeclarationOnly": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"esModuleInterop": true,
"skipLibCheck": true,
"strict": false,
"allowSyntheticDefaultImports": true
},
"include": [
"e/web/**/*.mts",
"web/**/*.mts",
"web/.storybook/*.mts",
"web/packages/build/vite",
"web/packages/teleterm/csp.ts"
]
}