-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Pascal Garber
committed
Jul 3, 2023
1 parent
977adc7
commit 3b4a1bb
Showing
38 changed files
with
745 additions
and
458 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
555 changes: 278 additions & 277 deletions
555
.yarn/releases/yarn-3.5.0.cjs → .yarn/releases/yarn-3.6.0.cjs
Large diffs are not rendered by default.
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
Submodule @types
updated
2485 files
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,22 +1,22 @@ | ||
{ | ||
"compilerOptions": { | ||
// General settings for code interpretation | ||
"target": "esnext", | ||
"module": "esnext", | ||
"isolatedModules": true, | ||
"allowSyntheticDefaultImports": false, | ||
"experimentalDecorators": true, | ||
"moduleResolution": "node", | ||
"noEmit": true, | ||
"noEmitOnError": false, | ||
"baseUrl": "../../@types/Gjs/", | ||
"rootDir": "../../@types/Gjs", | ||
// General settings for code generation | ||
"removeComments": false, | ||
"inlineSourceMap": false, | ||
"inlineSources": false, | ||
"newLine": "LF" | ||
}, | ||
"include": ["../../@types/Gjs"], | ||
"exclude": ["../../@types/Gjs/index.d.ts"] | ||
"compilerOptions": { | ||
// General settings for code interpretation | ||
"target": "esnext", | ||
"module": "esnext", | ||
"isolatedModules": true, | ||
"allowSyntheticDefaultImports": false, | ||
"experimentalDecorators": true, | ||
"moduleResolution": "node", | ||
"noEmit": true, | ||
"noEmitOnError": false, | ||
"baseUrl": "../../@types/", | ||
"rootDir": "../../@types", | ||
// General settings for code generation | ||
"removeComments": false, | ||
"inlineSourceMap": false, | ||
"inlineSources": false, | ||
"newLine": "LF" | ||
}, | ||
"include": ["../../@types/**/*.ts"], | ||
"exclude": ["../../@types/node-*/*.ts"] | ||
} |
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,17 +1,30 @@ | ||
{ | ||
"out": "../../docs/gjs/", | ||
"readme": "none", | ||
"entryPointStrategy": "packages", | ||
"entryPoints": [ | ||
"../../@types/" | ||
"../../@types/*" | ||
], | ||
"includes": "../../@types/**/*", | ||
"exclude:": "../../@types/node-*", | ||
"tsconfig": "./tsconfig.gjs.json", | ||
"entryPointStrategy": "expand", | ||
"externalPattern": "../../@types/node-*", | ||
"excludeExternals": true, | ||
"disableSources": false, | ||
"name": "GJS API Reference", | ||
"name": "GJS API Reference (Try build)", | ||
"noScript": true, | ||
"noReplaceElement": true, | ||
"skipErrorChecking": true, | ||
"includeVersion": true, | ||
"serverBaseUrl": "https://gjs-docs.gjsify.org/", | ||
"theme": "gjsify" | ||
"theme": "gjsify", | ||
"navigation": { | ||
"includeCategories": true, | ||
"includeGroups": true | ||
}, | ||
"categorizeByGroup": true, | ||
"visibilityFilters": { | ||
"protected": true, | ||
"private": true, | ||
"inherited": true, | ||
"external": true, | ||
"@alpha": true, | ||
"@beta": true | ||
} | ||
} |
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
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.