mirror of
https://github.com/gravitational/teleport.git
synced 2026-09-24 16:17:11 +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
23 lines
583 B
JSON
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
|
|
}
|
|
}
|