diff --git a/src/tsconfig.json b/src/tsconfig.json index 33a5e87fb..14b179cec 100644 --- a/src/tsconfig.json +++ b/src/tsconfig.json @@ -1,9 +1,7 @@ { "extends": "../tsconfig.base.json", "compilerOptions": { - "rootDir": "./", - "outDir": "../dist", - "emitDeclarationOnly": true + "rootDir": "./" }, "include": ["."] } diff --git a/tsconfig.base.json b/tsconfig.base.json index 1095a2bc3..36c81b03b 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -1,6 +1,7 @@ { "extends": ["@sapphire/ts-config", "@sapphire/ts-config/bundler", "@sapphire/ts-config/extra-strict", "@sapphire/ts-config/verbatim"], "compilerOptions": { + "noEmit": true, "incremental": false, "useDefineForClassFields": false } diff --git a/tsconfig.eslint.json b/tsconfig.eslint.json index 29cc33456..7118fee9c 100644 --- a/tsconfig.eslint.json +++ b/tsconfig.eslint.json @@ -1,7 +1,6 @@ { "extends": "./tsconfig.base.json", "compilerOptions": { - "noEmit": true, "types": ["vitest/globals"], "lib": ["DOM", "ESNext"] },