forked from pixijs-userland/html-text
-
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.
Convert to TypeScript, upgrade to v7
- Loading branch information
1 parent
aa57833
commit 3d2b793
Showing
10 changed files
with
15,110 additions
and
3,257 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
node_modules | ||
dist | ||
docs | ||
.DS_Store | ||
.DS_Store | ||
.types_output | ||
example.api.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json", | ||
"projectFolder": "..", | ||
"mainEntryPointFilePath": "<projectFolder>/.types_output/index.d.ts", | ||
"bundledPackages": [], | ||
"compiler": { | ||
"tsconfigFilePath": "<projectFolder>/tsconfig.json" | ||
}, | ||
"apiReport": { | ||
"enabled": false | ||
}, | ||
"docModel": { | ||
"enabled": false | ||
}, | ||
"dtsRollup": { | ||
"enabled": true, | ||
"untrimmedFilePath": "<projectFolder>/dist/html-text.d.ts" | ||
}, | ||
"tsdocMetadata": { | ||
"enabled": false | ||
}, | ||
"messages": { | ||
"compilerMessageReporting": { | ||
"default": { | ||
"logLevel": "warning" | ||
} | ||
}, | ||
"extractorMessageReporting": { | ||
"default": { | ||
"logLevel": "warning" | ||
}, | ||
"ae-missing-release-tag": { | ||
"logLevel": "none" | ||
}, | ||
"ae-forgotten-export": { | ||
"logLevel": "none" | ||
}, | ||
"ae-setter-with-docs": { | ||
"logLevel": "none" | ||
} | ||
}, | ||
"tsdocMessageReporting": { | ||
"default": { | ||
"logLevel": "none" | ||
} | ||
} | ||
} | ||
} |
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,31 +1,43 @@ | ||
{ | ||
"tags": { | ||
"allowUnknownTags": false | ||
}, | ||
"source": { | ||
"include": [ | ||
"src/**/*.ts" | ||
] | ||
}, | ||
"templates": { | ||
"applicationName": "PixiJS HTMLText", | ||
"meta": { | ||
"title": "PixiJS HTMLText", | ||
"description": "API Documentation for HTMLText for PixiJS", | ||
"keyword": "PixiJS, Text, canvas, rendering, typography, CSS, SVG" | ||
}, | ||
"cleverLinks": false, | ||
"linenums": true, | ||
"monospaceLinks": false, | ||
"default": { | ||
"outputSourceFiles": true | ||
} | ||
}, | ||
"source": { | ||
"include": ["./src/"], | ||
"includePattern": ".+\\.js(doc)?$", | ||
"excludePattern": "docs" | ||
}, | ||
"plugins": [ | ||
"plugins/markdown", | ||
"@pixi/jsdoc-template/plugins/es6-fix" | ||
"plugins/markdown" | ||
], | ||
"markdown": { | ||
"parser": "gfm", | ||
"hardwrap": false | ||
}, | ||
"template": { | ||
"readme": "./README.md", | ||
"repository": "https://github.com/pixijs/html-text/" | ||
}, | ||
"opts": { | ||
"encoding": "utf8", | ||
"recurse": true, | ||
"private": false, | ||
"lenient": false, | ||
"destination": "./docs", | ||
"template": "./node_modules/@pixi/jsdoc-template" | ||
"lenient": true, | ||
"destination": "docs", | ||
"template": "@pixi/webdoc-template" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.