From 14952a75ba6cecf3ba66a412a2fca6afd8f6ce52 Mon Sep 17 00:00:00 2001 From: Jordan Sexton Date: Mon, 27 Dec 2021 20:01:55 -0600 Subject: [PATCH] organize config --- token/ts/tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/token/ts/tsconfig.json b/token/ts/tsconfig.json index badcc9a0..c6c16aa2 100644 --- a/token/ts/tsconfig.json +++ b/token/ts/tsconfig.json @@ -2,14 +2,14 @@ "include": ["src", "types"], "exclude": ["node_modules"], "compilerOptions": { + "module": "esnext", + "target": "esnext", "outDir": "lib/esm", "noEmit": false, "declaration": true, "sourceMap": true, "noEmitOnError": true, "stripInternal": true, - "module": "esnext", - "target": "esnext", "moduleResolution": "node", "strict": true, "esModuleInterop": true,