-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use tsconfig from package to avoid confusion
cc @martin-lysk you raised the issue on discord that you were unsure which tsconfig to take.
- Loading branch information
1 parent
390630c
commit dd7d176
Showing
27 changed files
with
510 additions
and
277 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,33 @@ | ||
{ | ||
"name": "@inlang/marketplace-manifest", | ||
"type": "module", | ||
"version": "1.4.2", | ||
"exports": { | ||
".": "./dist/index.js" | ||
}, | ||
"files": [ | ||
"./dist", | ||
"./src" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"scripts": { | ||
"build": "tsc --build", | ||
"dev": "tsc --watch", | ||
"test": "tsc --noEmit && vitest run", | ||
"format": "prettier ./src --write", | ||
"clean": "rm -rf ./dist ./node_modules" | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"@sinclair/typebox": "^0.31.17", | ||
"typescript": "^5.5.2", | ||
"vitest": "0.34.3" | ||
}, | ||
"peerDependencies": { | ||
"@sinclair/typebox": "^0.31.17" | ||
}, | ||
"license": "Apache-2.0" | ||
} | ||
"name": "@inlang/marketplace-manifest", | ||
"type": "module", | ||
"version": "1.4.2", | ||
"exports": { | ||
".": "./dist/index.js" | ||
}, | ||
"files": [ | ||
"./dist", | ||
"./src" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"scripts": { | ||
"build": "tsc --build", | ||
"dev": "tsc --watch", | ||
"test": "tsc --noEmit && vitest run", | ||
"format": "prettier ./src --write", | ||
"clean": "rm -rf ./dist ./node_modules" | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"@opral/tsconfig": "workspace:*", | ||
"@sinclair/typebox": "^0.31.17", | ||
"typescript": "^5.5.2", | ||
"vitest": "0.34.3" | ||
}, | ||
"peerDependencies": { | ||
"@sinclair/typebox": "^0.31.17" | ||
}, | ||
"license": "Apache-2.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"extends": "../tsconfig.base.json", | ||
"include": ["src/**/*"], | ||
"compilerOptions": { | ||
"lib": ["ESNext"], | ||
"types": [], | ||
"outDir": "./dist", | ||
"rootDir": "./src" | ||
} | ||
"extends": "@opral/tsconfig/default", | ||
"include": ["src/**/*"], | ||
"compilerOptions": { | ||
"lib": ["ESNext"], | ||
"types": [], | ||
"outDir": "./dist", | ||
"rootDir": "./src" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,36 @@ | ||
{ | ||
"name": "@inlang/marketplace-registry", | ||
"type": "module", | ||
"version": "2.0.0", | ||
"private": true, | ||
"exports": { | ||
".": "./dist/index.js", | ||
"./registry.json": "./registry.json" | ||
}, | ||
"files": [ | ||
"./dist", | ||
"./src" | ||
], | ||
"scripts": { | ||
"build": "node ./buildRegistry.js && npx prettier ./src --write && tsc --build", | ||
"dev": "tsc --watch", | ||
"purge": "node ./purgeRegistry.js", | ||
"test": "node ./buildRegistry.js && npx prettier ./src --write && tsc --noEmit", | ||
"format": "prettier ./src --write", | ||
"clean": "rm -rf ./dist ./node_modules" | ||
}, | ||
"engines": { | ||
"node": ">=16.15.0" | ||
}, | ||
"dependencies": { | ||
"@inlang/marketplace-manifest": "workspace:*", | ||
"@sinclair/typebox": "^0.31.8", | ||
"algoliasearch": "4.20.0", | ||
"node-fetch": "3.3.2" | ||
}, | ||
"devDependencies": { | ||
"typescript": "5.2.2" | ||
}, | ||
"license": "Apache-2.0" | ||
"name": "@inlang/marketplace-registry", | ||
"type": "module", | ||
"version": "2.0.0", | ||
"private": true, | ||
"exports": { | ||
".": "./dist/index.js", | ||
"./registry.json": "./registry.json" | ||
}, | ||
"files": [ | ||
"./dist", | ||
"./src" | ||
], | ||
"scripts": { | ||
"build": "node ./buildRegistry.js && npx prettier ./src --write && tsc --build", | ||
"dev": "tsc --watch", | ||
"purge": "node ./purgeRegistry.js", | ||
"test": "node ./buildRegistry.js && npx prettier ./src --write && tsc --noEmit", | ||
"format": "prettier ./src --write", | ||
"clean": "rm -rf ./dist ./node_modules" | ||
}, | ||
"engines": { | ||
"node": ">=16.15.0" | ||
}, | ||
"dependencies": { | ||
"@opral/tsconfig": "workspace:*", | ||
"@inlang/marketplace-manifest": "workspace:*", | ||
"@sinclair/typebox": "^0.31.8", | ||
"algoliasearch": "4.20.0", | ||
"node-fetch": "3.3.2" | ||
}, | ||
"devDependencies": { | ||
"typescript": "5.2.2" | ||
}, | ||
"license": "Apache-2.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"extends": "../tsconfig.base.json", | ||
"include": ["src/**/*"], | ||
"compilerOptions": { | ||
"types": [], | ||
"outDir": "./dist", | ||
"rootDir": "./src" | ||
} | ||
"extends": "@opral/tsconfig/default", | ||
"include": ["src/**/*"], | ||
"compilerOptions": { | ||
"types": [], | ||
"outDir": "./dist", | ||
"rootDir": "./src" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
inlang/packages/recommendations/recommend-sherlock/tsconfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
{ | ||
"extends": "../tsconfig.base.json", | ||
"include": ["src/**/*.ts"], | ||
"compilerOptions": { | ||
// DOM because of fetch. TODO: extract fetch from this package and | ||
// let fetch be provided by the environment. | ||
"lib": ["ESNext", "DOM"], | ||
"types": [], | ||
"outDir": "./dist", | ||
"rootDir": "./src" | ||
} | ||
"extends": "@opral/tsconfig/default", | ||
"include": ["src/**/*.ts"], | ||
"compilerOptions": { | ||
// DOM because of fetch. TODO: extract fetch from this package and | ||
// let fetch be provided by the environment. | ||
"lib": ["ESNext", "DOM"], | ||
"types": [], | ||
"outDir": "./dist", | ||
"rootDir": "./src" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"extends": "../tsconfig.base.json", | ||
"include": ["src/*.ts"], | ||
"compilerOptions": { | ||
// DOM because of fetch. TODO: extract fetch from this package and | ||
// let fetch be provided by the environment. | ||
"lib": ["ESNext", "DOM"], | ||
"types": [], | ||
"rootDir": "./src" | ||
} | ||
"extends": "@opral/tsconfig/default", | ||
"include": ["src/*.ts"], | ||
"compilerOptions": { | ||
// DOM because of fetch. TODO: extract fetch from this package and | ||
// let fetch be provided by the environment. | ||
"lib": ["ESNext", "DOM"], | ||
"types": [], | ||
"rootDir": "./src" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,23 @@ | ||
{ | ||
"name": "@inlang/telemetry-proxy", | ||
"type": "module", | ||
"private": true, | ||
"scripts": { | ||
"dev": "node --loader tsx ./src/main.ts", | ||
"production": "NODE_ENV=production tsx ./src/main.ts", | ||
"format": "prettier ./src --write", | ||
"clean": "rm -rf ./dist ./node_modules" | ||
}, | ||
"dependencies": { | ||
"express": "^4.18.2", | ||
"http-proxy-middleware": "^2.0.6", | ||
"tsx": "3.12.7" | ||
}, | ||
"devDependencies": { | ||
"@types/express": "^4.17.17", | ||
"typescript": "^5.5.2" | ||
}, | ||
"license": "Apache-2.0", | ||
"version": "0.0.1" | ||
"name": "@inlang/telemetry-proxy", | ||
"type": "module", | ||
"private": true, | ||
"scripts": { | ||
"dev": "node --loader tsx ./src/main.ts", | ||
"production": "NODE_ENV=production tsx ./src/main.ts", | ||
"format": "prettier ./src --write", | ||
"clean": "rm -rf ./dist ./node_modules" | ||
}, | ||
"dependencies": { | ||
"express": "^4.18.2", | ||
"http-proxy-middleware": "^2.0.6", | ||
"tsx": "3.12.7" | ||
}, | ||
"devDependencies": { | ||
"@opral/tsconfig": "workspace:*", | ||
"@types/express": "^4.17.17", | ||
"typescript": "^5.5.2" | ||
}, | ||
"license": "Apache-2.0", | ||
"version": "0.0.1" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.