Skip to content

Commit

Permalink
Fix type validation script
Browse files Browse the repository at this point in the history
  • Loading branch information
JumpLink committed Feb 25, 2024
1 parent 60a6c40 commit fad7a8e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 14 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,19 @@
"build:all": "yarn build && yarn build:examples",
"start:cli-examples:all": "yarn start:cli-examples:gjs",
"start:cli-examples:gjs": "yarn workspace ts-for-gir-glib-2-spawn-command-example run start && yarn workspace ts-for-gir-gio-2-cat-promisify-packages run start",
"build:types:packages": "NODE_OPTIONS=--max-old-space-size=25600 yarn ts-for-gir generate --configName='.ts-for-gir.packages-all.rc.js' && yarn install",
"build:types:packages:gtk4": "NODE_OPTIONS=--max-old-space-size=25600 yarn ts-for-gir generate --configName='.ts-for-gir.packages-gtk4.rc.js' && yarn install",
"build:types:packages": "yarn ts-for-gir generate --configName='.ts-for-gir.packages-all.rc.js' && yarn install",
"build:types:packages:gtk4": "yarn ts-for-gir generate --configName='.ts-for-gir.packages-gtk4.rc.js' && yarn install",
"build:types:local": "yarn ts-for-gir generate --configName='.ts-for-gir.all.rc.js'",
"build:types:local:gtk4": "yarn ts-for-gir generate --configName='.ts-for-gir.gtk4.rc.js'",
"build:types": "yarn build:types:local",
"validate": "yarn workspaces foreach -v --all --parallel run validate",
"validate:types": "yarn workspaces foreach -v --all --parallel run validate:types",
"validate:examples": "yarn workspaces foreach -v --all --parallel run validate:app",
"validate:types:local": "NODE_OPTIONS=--max_old_space_size=9216 tsc --project tsconfig.json",
"validate:types:local": "tsc --project tsconfig.json",
"clear": "yarn clear:build && yarn clear:types",
"clear:build": "yarn workspaces foreach -v --include '@ts-for-gir/*' run clear:build",
"clear:types": "rimraf ./@types",
"clear:types:gjs": "rimraf ./@types",
"clear:types:local": "rimraf ./@types",
"clear:examples": "yarn workspaces foreach -v --all --exclude @ts-for-gir/cli,@ts-for-gir/lib,@ts-for-gir/generator-base,@ts-for-gir/generator-typescript,@ts-for-gir/generator-html-doc --parallel run clear",
"clear:all": "yarn build && yarn clear:examples",
"watch": "concurrently 'yarn:watch:*'",
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"noImplicitThis": true,
"alwaysStrict": true
},
"include": ["@types/*.ts"],
"exclude": ["@types/node-*.ts"]
"include": ["@types/**/*.ts"],
"exclude": []
}
8 changes: 0 additions & 8 deletions tsconfig.node.json

This file was deleted.

0 comments on commit fad7a8e

Please sign in to comment.