Rename src to source
This commit is contained in:
@@ -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
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"rootDir": "./src",
|
"rootDir": "source",
|
||||||
"outDir": "./dist",
|
"outDir": "./dist",
|
||||||
"module": "es2022",
|
"module": "es2022",
|
||||||
"target": "es2022",
|
"target": "es2022",
|
||||||
|
|||||||
Reference in New Issue
Block a user