From 12488bc6d59ee229c4bd8c5a577429b36449564a Mon Sep 17 00:00:00 2001 From: Alexander Skvortsov Date: Thu, 20 Jan 2022 03:24:25 -0500 Subject: [PATCH] chore: remove unnecessary tsconfig --- extensions/approval/js/tsconfig.json | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 extensions/approval/js/tsconfig.json diff --git a/extensions/approval/js/tsconfig.json b/extensions/approval/js/tsconfig.json deleted file mode 100644 index 207c5b382..000000000 --- a/extensions/approval/js/tsconfig.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - // Use Flarum's tsconfig as a starting point - "extends": "flarum-tsconfig", - // This will match all .ts, .tsx, .d.ts, .js, .jsx files in your `src` folder - // and also tells your Typescript server to read core's global typings for - // access to `dayjs` and `$` in the global namespace. - "include": ["src/**/*", "../vendor/flarum/core/js/dist-typings/@types/**/*"], - "compilerOptions": { - // This will output typings to `dist-typings` - "declarationDir": "./dist-typings", - "baseUrl": ".", - "paths": { - "flarum/*": ["../vendor/flarum/core/js/dist-typings/*"] - } - } -}