diff --git a/apps/minifront/tsconfig.json b/apps/minifront/tsconfig.json index 4d6d6b47aa..bf2236b9dc 100644 --- a/apps/minifront/tsconfig.json +++ b/apps/minifront/tsconfig.json @@ -1,5 +1,5 @@ { "extends": "tsconfig/vite.json", - "include": ["src", "*.ts", "__mocks__"], + "include": ["src", "tests-setup.ts", "__mocks__"], "exclude": ["node_modules"] } diff --git a/packages/polyfills/tsconfig.json b/packages/polyfills/tsconfig.json index 4b5e1fa979..b5d6f0cef0 100644 --- a/packages/polyfills/tsconfig.json +++ b/packages/polyfills/tsconfig.json @@ -3,9 +3,6 @@ "exclude": ["node_modules"], "include": ["src"], "compilerOptions": { - "noEmit": true, - "declaration": false, - "declarationMap": false, - "sourceMap": false + "noEmit": true } } diff --git a/packages/zquery/tsconfig.json b/packages/zquery/tsconfig.json index 2a9d5af44e..c7c438901b 100644 --- a/packages/zquery/tsconfig.json +++ b/packages/zquery/tsconfig.json @@ -1,5 +1,5 @@ { "extends": "tsconfig/react-library.json", - "include": [".", "./tests-setup.ts"], + "include": ["src", "tests-setup.ts"], "exclude": ["dist", "build", "node_modules"] }