From 4a06dfb741d6681b599a3352f03592aec326148e Mon Sep 17 00:00:00 2001 From: Max Date: Sat, 12 Oct 2024 13:39:14 +0200 Subject: [PATCH] fix(tsconfig): only have one tsconfig file Signed-off-by: Max --- .tsconfig.json | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .tsconfig.json diff --git a/.tsconfig.json b/.tsconfig.json deleted file mode 100644 index 0941bc8e72b..00000000000 --- a/.tsconfig.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "extends": "@vue/tsconfig/tsconfig.json", - "include": ["./src/**/*.ts"], - "compilerOptions": { - "types": ["cypress", "cypress-visual-regression", "node", "dockerode", "@nextcloud/typings"], - "target": "ESNext", - "module": "esnext", - "moduleResolution": "node", - // Allow ts to import js files - "allowJs": true, - "allowSyntheticDefaultImports": true, - "declaration": false, - "noImplicitAny": false, - "resolveJsonModule": true, - "strict": true, - }, - "ts-node": { - // these options are overrides used only by ts-node - // same as our --compilerOptions flag and our TS_NODE_COMPILER_OPTIONS environment variable - "compilerOptions": { - "module": "commonjs", - "verbatimModuleSyntax": false - } - } -}