From a4a015a9a73fa3229e6b1c90a2ca016e22bfa038 Mon Sep 17 00:00:00 2001 From: Christian Emmer <10749361+emmercm@users.noreply.github.com> Date: Thu, 26 Oct 2023 19:03:52 -0700 Subject: [PATCH] Refactor: revert tsconfig settings that were necessary for `robloach-datfile` (#789) --- tsconfig.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 666070978..f08bf150a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -31,7 +31,7 @@ // "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */ // "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */ // "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */ - "typeRoots": ["./src/@types", "./node_modules/@types"], /* Specify multiple folders that act like './node_modules/@types'. */ + // "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */ // "types": [], /* Specify type package names to be included without being referenced in a source file. */ // "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */ // "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */ @@ -103,6 +103,5 @@ "ts-node": { "esm": true, "experimentalSpecifierResolution": "node", - "files": true, // without this `ts-node` and `node --loader ts-node/esm` won't find our custom types } }