Files
teleport/tsconfig.node.json
T
Grzegorz Zdunek a1f309a34d Make web/design a separate TypeScript project (#47694)
* Make `web/design` a separate TypeScript project

* Fix compile errors

It seems that making `web/design` a separate project slightly changes the behavior of type inference
2024-10-25 15:55:02 +00:00

18 lines
379 B
JSON

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