From b797b805020ada37e84e92d454bea3d27074b43e Mon Sep 17 00:00:00 2001 From: hardfist Date: Sun, 30 Jan 2022 00:14:27 +0800 Subject: [PATCH] chore: add tsconfig.json to scripts directory (fix #6409) (#6426) --- scripts/tsconfig.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 scripts/tsconfig.json diff --git a/scripts/tsconfig.json b/scripts/tsconfig.json new file mode 100644 index 00000000..6a32b899 --- /dev/null +++ b/scripts/tsconfig.json @@ -0,0 +1,13 @@ +{ + "$schema": "https://json.schemastore.org/tsconfig", + "compilerOptions": { + "module": "commonjs", + "moduleResolution": "node", + "target": "es2019", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "types": ["node"] + } +}