diff --git a/tsconfig.json b/tsconfig.json index 1a2f58b7..9664a242 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,8 +9,8 @@ "forceConsistentCasingInFileNames": true, "resolveJsonModule": true, "isolatedModules": true, - "declaration": true, - "declarationMap": true, + "declaration": false, + "declarationMap": false, "sourceMap": true, "baseUrl": ".", "paths": { diff --git a/tsconfig.server.json b/tsconfig.server.json index 4ec86800..99ba561f 100644 --- a/tsconfig.server.json +++ b/tsconfig.server.json @@ -1,9 +1,7 @@ { "extends": "./tsconfig.json", "compilerOptions": { - "types": ["@cloudflare/workers-types"], - "declaration": false, - "declarationMap": false + "types": ["@cloudflare/workers-types"] }, "include": ["server", "shared", "workers"], "exclude": ["server/**/*.cf-test.ts", "workers/**/*.cf-test.ts", "server/test/apply-migrations.ts"] diff --git a/tsconfig.web.json b/tsconfig.web.json index ddfb5c80..cab301ef 100644 --- a/tsconfig.web.json +++ b/tsconfig.web.json @@ -1,15 +1,7 @@ { "extends": "./tsconfig.json", "compilerOptions": { - "declaration": false, - "declarationMap": false, - "jsx": "react-jsx", - "baseUrl": ".", - "paths": { - "@/*": ["./src/*"], - "@shared/*": ["./shared/*"], - "@server/*": ["./server/*"] - } + "jsx": "react-jsx" }, "include": ["src", "shared"] }