浏览代码

the never-ending misery of config files

Joeri Exelmans 1 年之前
父节点
当前提交
55e5ffbe86
共有 4 个文件被更改,包括 4 次插入6 次删除
  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/**/*"]
 }