diff --git a/package-lock.json b/package-lock.json index 1d32a7dd..e19e1cc3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -28,7 +28,7 @@ "eslint-config-prettier": "^9.0.0", "eslint-config-standard": "^17.1.0", "eslint-config-standard-with-typescript": "^43.0.0", - "eslint-plugin-simple-import-sort": "^10.0.0", + "eslint-plugin-simple-import-sort": "^12.0.0", "eslint-plugin-unused-imports": "^3.0.0", "execa": "^8.0.1", "landlubber": "^1.0.0", @@ -3240,9 +3240,9 @@ } }, "node_modules/eslint-plugin-simple-import-sort": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-simple-import-sort/-/eslint-plugin-simple-import-sort-10.0.0.tgz", - "integrity": "sha512-AeTvO9UCMSNzIHRkg8S6c3RPy5YEwKWSQPx3DYghLedo2ZQxowPFLGDN1AZ2evfg6r6mjBSZSLxLFsWSu3acsw==", + "version": "12.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-simple-import-sort/-/eslint-plugin-simple-import-sort-12.0.0.tgz", + "integrity": "sha512-8o0dVEdAkYap0Cn5kNeklaKcT1nUsa3LITWEuFk3nJifOoD+5JQGoyDUW2W/iPWwBsNBJpyJS9y4je/BgxLcyQ==", "dev": true, "peerDependencies": { "eslint": ">=5.0.0" diff --git a/package.json b/package.json index b3cb140a..c220a220 100644 --- a/package.json +++ b/package.json @@ -59,7 +59,7 @@ "build:entrypoints": "npm run build:ts", "postbuild:entrypoints": "tsup", "build:ts": "tsc --project tsconfig.build.json", - "prebuild:ts": "del 'index.*' 'connect.*' 'lib'", + "prebuild:ts": "del 'index.*' 'connect.*' lib", "postbuild:ts": "tsc-alias --project tsconfig.build.json", "typecheck": "tsc", "docs:build": "typedoc", @@ -115,7 +115,7 @@ "eslint-config-prettier": "^9.0.0", "eslint-config-standard": "^17.1.0", "eslint-config-standard-with-typescript": "^43.0.0", - "eslint-plugin-simple-import-sort": "^10.0.0", + "eslint-plugin-simple-import-sort": "^12.0.0", "eslint-plugin-unused-imports": "^3.0.0", "execa": "^8.0.1", "landlubber": "^1.0.0", diff --git a/tsconfig.build.json b/tsconfig.build.json index 010300b2..fb0c343a 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -2,6 +2,7 @@ "$schema": "https://json.schemastore.org/tsconfig", "extends": "./tsconfig.json", "compilerOptions": { + "composite": false, "noEmit": false, "noEmitOnError": true, "rootDir": "./src", diff --git a/tsconfig.json b/tsconfig.json index 0a0ad424..ac73ec63 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,13 +1,13 @@ { "$schema": "https://json.schemastore.org/tsconfig", "compilerOptions": { + "composite": true, "noEmit": true, "strict": true, "module": "nodenext", "esModuleInterop": true, "target": "es2021", "jsx": "react-jsx", - "declaration": true, "sourceMap": true, "newLine": "lf", "verbatimModuleSyntax": true,