This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
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
1 parent
9a9c621
commit e567d18
Showing
7 changed files
with
20 additions
and
29 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
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,7 +1,9 @@ | ||
import { name, publisher } from '../package.json'; | ||
const PUBLISHER = 'seanwu'; // Should be the same in package.json | ||
|
||
const NAME = 'vscode-qt-for-python'; // Should be the same in package.json | ||
|
||
export const EXTENSION_NAME = 'qtForPython'; | ||
|
||
export const EXTENSION_ID = `${publisher}.${name}`; | ||
export const EXTENSION_ID = `${PUBLISHER}.${NAME}`; | ||
|
||
export type SupportedTool = 'designer' | 'lupdate' | 'uic' | 'rcc'; |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,16 @@ | ||
{ | ||
"compilerOptions": { | ||
"rootDir": ".", | ||
"outDir": ".", | ||
"module": "commonjs", | ||
"target": "es6", | ||
"rootDir": "src", | ||
"outDir": "out", | ||
"lib": ["esnext"], | ||
"sourceMap": true, | ||
"resolveJsonModule": true, | ||
"composite": true | ||
"strict": true, | ||
"noImplicitReturns": true, | ||
"noFallthroughCasesInSwitch": true, | ||
"noUnusedParameters": true | ||
}, | ||
"files": ["package.json"] | ||
"exclude": ["node_modules", ".vscode-test"] | ||
} |