From 34268fa3675a5a251769e37efb8dbc726817e7ef Mon Sep 17 00:00:00 2001 From: LcferShell <71859305+LcfherShell@users.noreply.github.com> Date: Sun, 13 Oct 2024 22:33:19 +0700 Subject: [PATCH] Create tsconfig.json --- tsconfig.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..cff4f60 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,18 @@ +{ + "compilerOptions": { + "target": "es6", + "module": "commonjs", + "outDir": "./", + "rootDir": "./", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "declaration": true + }, + "include": [ + "*.ts" + ], + "exclude": [ + "node_modules" + ] +}