Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove baseUrl from tsconfigs #12981

Merged
merged 1 commit into from
Nov 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/playwright/src/tests/theia-output-view.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// *****************************************************************************

Check failure on line 1 in examples/playwright/src/tests/theia-output-view.test.ts

View workflow job for this annotation

GitHub Actions / Playwright Tests (ubuntu-latest, Node.js 18.x)

../../src/tests/theia-output-view.test.ts:33:9 › Theia Output View › should open the output view and check if is visible and active

1) ../../src/tests/theia-output-view.test.ts:33:9 › Theia Output View › should open the output view and check if is visible and active Test timeout of 30000ms exceeded.
// Copyright (C) 2023 EclipseSource and others.
//
// This program and the accompanying materials are made available under the
Expand All @@ -15,7 +15,7 @@
// *****************************************************************************

import { expect } from '@playwright/test';
import { TheiaOutputViewChannel } from 'src/theia-output-channel';
import { TheiaOutputViewChannel } from '../theia-output-channel';
import { TheiaApp } from '../theia-app';
import { TheiaOutputView } from '../theia-output-view';
import test, { page } from './fixtures/theia-fixture';
Expand Down
3 changes: 1 addition & 2 deletions examples/playwright/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
"compilerOptions": {
"composite": true,
"rootDir": "src",
"outDir": "lib",
"baseUrl": "."
"outDir": "lib"
},
"include": [
"src"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import { injectable } from 'inversify';
import { DefaultSecondaryWindowService } from '../../browser/window/default-secondary-window-service';
import { ApplicationShell, ExtractableWidget } from 'src/browser';
import { ApplicationShell, ExtractableWidget } from '../../browser';

@injectable()
export class ElectronSecondaryWindowService extends DefaultSecondaryWindowService {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/node/i18n/localization-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
// *****************************************************************************

import { inject, injectable } from 'inversify';
import { Localization } from 'src/common/i18n/localization';
import { Localization } from '../../common/i18n/localization';
import { LocalizationServer } from '../../common/i18n/localization-server';
import { nls } from '../../common/nls';
import { Deferred } from '../../common/promise-util';
Expand Down
3 changes: 1 addition & 2 deletions packages/core/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
"compilerOptions": {
"composite": true,
"rootDir": "src",
"outDir": "lib",
"baseUrl": "."
"outDir": "lib"
},
"include": [
"src"
Expand Down
5 changes: 2 additions & 3 deletions packages/filesystem/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@
"composite": true,
"rootDir": "src",
"outDir": "lib",
"baseUrl": ".",
"paths": {
"mv": [
"src/typings/mv"
"./src/typings/mv"
],
"trash": [
"src/typings/trash"
"./src/typings/trash"
]
}
},
Expand Down
3 changes: 1 addition & 2 deletions packages/messages/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
"compilerOptions": {
"composite": true,
"rootDir": "src",
"outDir": "lib",
"baseUrl": "."
"outDir": "lib"
},
"include": [
"src"
Expand Down
3 changes: 1 addition & 2 deletions packages/preview/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
"compilerOptions": {
"composite": true,
"rootDir": "src",
"outDir": "lib",
"baseUrl": "."
"outDir": "lib"
},
"include": [
"src"
Expand Down
Loading