diff --git a/tsconfig.json b/tsconfig.json index f30c3c1..a03e65c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,22 +2,18 @@ "include": ["modules/**/*", ".zuplo/**/*", "tests/**/*"], "exclude": ["./node_modules", "./dist"], "compilerOptions": { - "baseUrl": ".", - "outDir": "./dist", - "module": "commonjs", - "target": "ESNext", + "module": "ESNext", + "target": "ES2022", + "lib": ["ESNext", "WebWorker", "Webworker.Iterable"], "preserveConstEnums": true, - "moduleResolution": "node", + "moduleResolution": "Bundler", "useUnknownInCatchVariables": false, "forceConsistentCasingInFileNames": true, "importHelpers": true, "removeComments": true, "esModuleInterop": true, - "sourceMap": true, - "declaration": true, - "declarationMap": true, + "noEmit": true, "strictNullChecks": true, - "experimentalDecorators": true, - "resolveJsonModule": true + "experimentalDecorators": true } -} \ No newline at end of file +}