Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"check": "tsc -b tsconfig.json",
"type-check": "turbo type-check",
"type-check-recursive": "pnpm --recursive --filter \"./packages/**/*\" exec tsc -b tsconfig.json",
"lint": "turbo lint",
Expand Down
3 changes: 2 additions & 1 deletion packages/aiken-uplc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
"clean-wasm": "rm -f src/bundler/.gitignore src/bundler/package.json src/web/.gitignore src/web/package.json",
"build": "tsc -b tsconfig.build.json && cp -r src/web/. dist/web && cp -r src/bundler/. dist/bundler",
"dev": "tsc -b tsconfig.build.json --watch",
"type-check": "tsc --noEmit",
"check": "tsc -b tsconfig.json",
"type-check": "tsc -b tsconfig.src.json",
"lint": "eslint \"src/**/*.{ts,mjs}\"",
"clean": "rm -rf dist .turbo .tsbuildinfo"
},
Expand Down
3 changes: 2 additions & 1 deletion packages/evolution-devnet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
"scripts": {
"build": "tsc -b tsconfig.build.json && babel dist --plugins annotate-pure-calls --out-dir dist --source-maps",
"dev": "tsc -b tsconfig.build.json --watch",
"type-check": "tsc --noEmit",
"check": "tsc -b tsconfig.json",
"type-check": "tsc -b tsconfig.src.json",
"lint": "eslint \"src/**/*.{ts,mjs}\" \"test/**/*.{ts,mjs}\"",
"test": "vitest run",
"clean": "rm -rf dist .turbo"
Expand Down
5 changes: 4 additions & 1 deletion packages/evolution-devnet/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@
"$schema": "http://json.schemastore.org/tsconfig",
"extends": "../../tsconfig.base.json",
"include": [],
"references": [{ "path": "tsconfig.src.json" }]
"references": [
{ "path": "tsconfig.src.json" },
{ "path": "tsconfig.test.json" }
]
}
3 changes: 2 additions & 1 deletion packages/evolution/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@
"scripts": {
"build": "tsc -b tsconfig.build.json && babel dist --plugins annotate-pure-calls --out-dir dist --source-maps",
"dev": "tsc -b tsconfig.build.json --watch",
"type-check": "tsc --noEmit",
"check": "tsc -b tsconfig.json",
"type-check": "tsc -b tsconfig.src.json",
"lint": "eslint \"src/**/*.{ts,mjs}\" \"test/**/*.{ts,mjs}\"",
"test": "vitest run",
"docgen": "docgen",
Expand Down
5 changes: 4 additions & 1 deletion packages/evolution/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@
"$schema": "http://json.schemastore.org/tsconfig",
"extends": "../../tsconfig.base.json",
"include": [],
"references": [{ "path": "tsconfig.src.json" }]
"references": [
{ "path": "tsconfig.src.json" },
{ "path": "tsconfig.test.json" }
]
}
3 changes: 2 additions & 1 deletion packages/scalus-uplc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
"scripts": {
"build": "tsc -b tsconfig.build.json",
"dev": "tsc -b tsconfig.build.json --watch",
"type-check": "tsc --noEmit",
"check": "tsc -b tsconfig.json",
"type-check": "tsc -b tsconfig.src.json",
"lint": "eslint \"src/**/*.{ts,mjs}\"",
"clean": "rm -rf dist .turbo .tsbuildinfo"
},
Expand Down
7 changes: 6 additions & 1 deletion tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"extends": "./tsconfig.base.json",
"include": [],
"references": [{ "path": "packages/evolution/tsconfig.build.json" }]
"references": [
{ "path": "packages/evolution/tsconfig.build.json" },
{ "path": "packages/evolution-devnet/tsconfig.build.json" },
{ "path": "packages/aiken-uplc/tsconfig.build.json" },
{ "path": "packages/scalus-uplc/tsconfig.build.json" }
]
}
23 changes: 21 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
{
"extends": "./tsconfig.base.json",
"include": [],
"references": [{ "path": "packages/evolution/tsconfig.json" }]
"references": [{ "path": "tsconfig.build.json" }],
"include": [
"./packages/*/test/**/*.ts",
"./packages/*/test/**/*.json"
],
"compilerOptions": {
"rootDir": ".",
"noEmit": true,
"resolveJsonModule": true,
"types": ["node"],
"paths": {
"@evolution-sdk/evolution": ["./packages/evolution/src/index.ts"],
"@evolution-sdk/evolution/*": ["./packages/evolution/src/*/index.ts", "./packages/evolution/src/*.ts"],
"@evolution-sdk/devnet": ["./packages/evolution-devnet/src/index.ts"],
"@evolution-sdk/devnet/*": ["./packages/evolution-devnet/src/*/index.ts", "./packages/evolution-devnet/src/*.ts"],
"@evolution-sdk/aiken-uplc": ["./packages/aiken-uplc/src/index.node.ts"],
"@evolution-sdk/aiken-uplc/*": ["./packages/aiken-uplc/src/*/index.ts", "./packages/aiken-uplc/src/*.ts"],
"@evolution-sdk/scalus-uplc": ["./packages/scalus-uplc/src/index.node.ts"],
"@evolution-sdk/scalus-uplc/*": ["./packages/scalus-uplc/src/*/index.ts", "./packages/scalus-uplc/src/*.ts"]
}
}
}
Loading