-
Notifications
You must be signed in to change notification settings - Fork 54
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
Showing
7 changed files
with
49 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
*.tsbuildinfo | ||
bin |
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,5 @@ | ||
# @glint/typescript-plugin | ||
|
||
The TypeScript server plugin that performs type-checking. | ||
|
||
Old Glint used the LanguageServer to perform type-checking; Glint 2 uses a TypeScript server plugin to follow suit with Volar. |
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,29 @@ | ||
{ | ||
"name": "@glint/typescript-plugin", | ||
"version": "1.4.0", | ||
"type": "module", | ||
"repository": "typed-ember/glint", | ||
"description": "TypeScript Server Plugin for Glint", | ||
"license": "MIT", | ||
"authors": [ | ||
"Alex Matchneer (https://github.com/machty)" | ||
], | ||
"files": [ | ||
"README.md", | ||
"lib" | ||
], | ||
"scripts": { | ||
"test": "vitest run", | ||
"test:typecheck": "echo 'no standalone typecheck within this project'", | ||
"test:tsc": "echo 'no standalone typecheck within this project'", | ||
"build": "tsc --build", | ||
"prepack": "yarn build" | ||
}, | ||
"dependencies": { | ||
"@glint/core": "^1.4.0", | ||
"@volar/typescript": "2.4.0-alpha.14" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
} | ||
} |
4 changes: 2 additions & 2 deletions
4
...ore/src/volar/typescript-server-plugin.ts → ...pt-plugin/src/typescript-server-plugin.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
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,9 @@ | ||
{ | ||
"extends": "../../tsconfig.compileroptions.json", | ||
"compilerOptions": { | ||
"rootDir": "src", | ||
"outDir": "bin" | ||
}, | ||
"include": ["src"], | ||
"references": [{ "path": "../core" }] | ||
} |