Rename src to source

This commit is contained in:
2026-07-27 10:16:33 +00:00
parent e4ceacade8
commit e2d04855b6
22 changed files with 5 additions and 5 deletions
View File
View File
@@ -1,7 +1,7 @@
import { import {
BaseStream, BaseStream,
type StreamMessage, type StreamMessage,
} from "../../src/services/stream/base-stream.js"; } from "../../source/services/stream/base-stream.js";
/** Minimal observable connection used by application and broadcaster tests. */ /** Minimal observable connection used by application and broadcaster tests. */
export class TestConnection extends BaseStream { export class TestConnection extends BaseStream {
@@ -1,8 +1,8 @@
import { describe, expect, it } from "vitest"; import { describe, expect, it } from "vitest";
import type { RouteDefinition, RouteModule } from "../../src/routes/types.js"; import type { RouteDefinition, RouteModule } from "../../source/routes/types.js";
import { ApplicationError } from "../../src/errors/index.js"; import { ApplicationError } from "../../source/errors/index.js";
import { ApplicationRouter } from "../../src/services/router.js"; import { ApplicationRouter } from "../../source/services/router.js";
import { TestConnection } from "../helpers/test-connection.js"; import { TestConnection } from "../helpers/test-connection.js";
function moduleWith(routes: RouteDefinition[]): RouteModule { function moduleWith(routes: RouteDefinition[]): RouteModule {
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"compilerOptions": { "compilerOptions": {
"rootDir": "./src", "rootDir": "source",
"outDir": "./dist", "outDir": "./dist",
"module": "es2022", "module": "es2022",
"target": "es2022", "target": "es2022",