From cf4899da05bc266c0464cfecb7b7233c07f6ee0d Mon Sep 17 00:00:00 2001 From: Elijah R Date: Sun, 4 Aug 2024 18:02:45 -0400 Subject: [PATCH] fix tsconfig.json dangling symlink --- tsconfig.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) mode change 120000 => 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json deleted file mode 120000 index 4ec6ff6..0000000 --- a/tsconfig.json +++ /dev/null @@ -1 +0,0 @@ -../tsconfig.json \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..69227a8 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,10 @@ +{ + "compilerOptions": { + "target": "ES2022", + "module": "ES2022", + "moduleResolution": "Node", + "types": ["node"], + "allowSyntheticDefaultImports": true, + "strict": true, + } +}