mirror of
https://github.com/gravitational/teleport.git
synced 2026-09-19 01:58:44 +08:00
* Remove deprecated baseUrl option https://devblogs.microsoft.com/typescript/progress-on-typescript-7-december-2025/ * Fix incorrect imports from build package It's safe to change the paths.build in tsconfig.json – the build package has no src directory, so there's definitely no imports which utilize this path. * Fix remaining incorrect imports * Remove wildcard path
44 lines
1.2 KiB
JSON
44 lines
1.2 KiB
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"include": [
|
|
"e/web/**/*.ts",
|
|
"e/web/**/*.tsx",
|
|
"e/web/**/*.js",
|
|
"e/web/**/*.jsx",
|
|
"web/**/*.ts",
|
|
"web/**/*.tsx",
|
|
"web/**/*.js",
|
|
"web/**/*.jsx",
|
|
"../web/src/**/*.ts",
|
|
"../web/src/**/*.tsx"
|
|
],
|
|
"references": [
|
|
{ "path": "./tsconfig.node.json" },
|
|
{ "path": "./web/packages/design/tsconfig.json" }
|
|
],
|
|
"compilerOptions": {
|
|
"outDir": "build.assets/.cache/ts",
|
|
"noEmit": true,
|
|
"types": ["node", "@types/wicg-file-system-access"],
|
|
"paths": {
|
|
"build/*": ["./web/packages/build/*"],
|
|
"build": ["./web/packages/build/"],
|
|
"shared/*": ["./web/packages/shared/*"],
|
|
"design/*": ["./web/packages/design/src/*"],
|
|
"design": ["./web/packages/design/src/"],
|
|
"teleport/*": ["./web/packages/teleport/src/*"],
|
|
"teleport": ["./web/packages/teleport/src/"],
|
|
"teleterm/*": ["./web/packages/teleterm/src/*"],
|
|
"e-teleport/*": ["./e/web/teleport/src/*"],
|
|
"gen-proto-ts/*": ["./gen/proto/ts/*"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"web/packages/design",
|
|
"node_modules",
|
|
"**/node_modules/*",
|
|
"**/build/app/**",
|
|
"**/build/release/**"
|
|
]
|
|
}
|