Files
teleport/tsconfig.base.json
T
ravicious d03f433998 Remove baseUrl from TS config, fix incorrect imports (#62958)
* 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
2026-01-19 15:30:48 +00:00

23 lines
583 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"allowJs": true,
"useDefineForClassFields": true,
"esModuleInterop": true,
"importHelpers": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"target": "esnext",
"module": "esnext",
"moduleResolution": "bundler",
"lib": ["dom", "dom.iterable", "esnext"],
"jsx": "react-jsx",
"strictBindCallApply": true,
"noImplicitThis": true,
"noEmitHelpers": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": false
}
}