From 735d1b1073ea734cbbf2b3758241e433e9c28475 Mon Sep 17 00:00:00 2001 From: Guan <821143943@qq.com> Date: Wed, 6 Sep 2023 17:38:20 +0800 Subject: [PATCH] chore: add tsconfig in playground --- playground/tsconfig.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 playground/tsconfig.json diff --git a/playground/tsconfig.json b/playground/tsconfig.json new file mode 100644 index 0000000..b25d1d6 --- /dev/null +++ b/playground/tsconfig.json @@ -0,0 +1,11 @@ +{ + "compilerOptions": { + "target": "ES2017", + "module": "ESNext", + "moduleResolution": "Bundler", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true + }, + "include": ["**/*.ts"] +}