diff options
Diffstat (limited to '')
| -rw-r--r-- | tooling/typescript/node.json (renamed from packages/workers/tsconfig.json) | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/workers/tsconfig.json b/tooling/typescript/node.json index cf49c407..aeda1ffd 100644 --- a/packages/workers/tsconfig.json +++ b/tooling/typescript/node.json @@ -2,10 +2,13 @@ "$schema": "https://json.schemastore.org/tsconfig", "extends": "@tsconfig/node21/tsconfig.json", "include": ["**/*.ts"], - "exclude": ["node_modules"], + "exclude": ["node_modules", "build", "dist", ".next", ".expo"], "compilerOptions": { "module": "ESNext", "moduleResolution": "node", + "incremental": true, + "isolatedModules": true, + "strict": true, "esModuleInterop": true } } |
