Procházet zdrojové kódy

the never-ending misery of config files

Joeri Exelmans před 1 rokem
rodič
revize
55e5ffbe86
4 změnil soubory, kde provedl 4 přidání a 6 odebrání
  1. 0 2
      lib/types.ts
  2. 2 2
      lib/util/dfs.test.ts
  3. 1 1
      tsconfig.json
  4. 1 1
      tsconfig.lib.json

+ 0 - 2
lib/types.ts

@@ -1,5 +1,3 @@
-import {inspect} from "util"; // NodeJS library 
-
 export type PrimitiveValue = string | number | boolean | null;
 
 export type UUID = string | number | boolean;

+ 2 - 2
lib/util/dfs.test.ts

@@ -1,10 +1,10 @@
 import {
   findDFS,
-} from "./dfs";
+} from "../lib/util/dfs";
 
 import {
   assert,
-} from "./assert";
+} from "../lib/util/assert";
 
 import * as _ from "lodash";
 

+ 1 - 1
tsconfig.json

@@ -14,5 +14,5 @@
     "declaration": true,
     "outDir": "./dist"
   },
-  "include": ["index.ts", "lib/**/*.ts", "test/**/*.test.ts"],
+  "include": ["test/**/*.test.ts"]
 }

+ 1 - 1
tsconfig.lib.json

@@ -14,5 +14,5 @@
     "declaration": true,
     "outDir": "./dist"
   },
-  "include": ["index.ts", "lib/**/*"],
+  "include": ["index.ts", "lib/**/*"]
 }