mirror of
https://github.com/gravitational/teleport.git
synced 2026-08-29 05:27:37 +08:00
a1f309a34d
* 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
18 lines
379 B
JSON
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"
|
|
]
|
|
}
|