-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update vite and vitest and fix test compilation and tsconfigs
- Fix vscode issue. Add proper tsc build configuration to examples integrate it into overall watch - Fix references to local projects not resolved in vscode, fix lint, remove tasks - Add test code compilation
- Loading branch information
Showing
28 changed files
with
662 additions
and
518 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 |
---|---|---|
@@ -1,3 +1,2 @@ | ||
/resources/ | ||
/server/*.js | ||
/server/*.js.map | ||
/resources | ||
/lib |
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,19 +1,22 @@ | ||
{ | ||
"extends": "../tsconfig.json", | ||
"compilerOptions": { | ||
"types": [ | ||
"reflect-metadata", | ||
"webpack-env" | ||
], | ||
"composite": false, | ||
"declaration": false, | ||
"declarationMap": false | ||
"outDir": "lib", | ||
"rootDir": "." | ||
}, | ||
"include": [ | ||
"./server/**/*.ts" | ||
"**/src/**/*.ts", | ||
"**/src/**/*.tsx", | ||
"server/**/*.ts" | ||
], | ||
"exclude": [ | ||
"**/*.spec.ts", | ||
"**/*.spec.tsx" | ||
"lib", | ||
"node_modules", | ||
"resources" | ||
], | ||
"references": [ | ||
{ "path": "../packages/sprotty-protocol/tsconfig.src.json" }, | ||
{ "path": "../packages/sprotty/tsconfig.src.json" }, | ||
{ "path": "../packages/sprotty-elk/tsconfig.src.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
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 |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
"src" | ||
], | ||
"exclude": [ | ||
"app" | ||
"app", | ||
"node_modules" | ||
] | ||
} |
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,21 +1,19 @@ | ||
// this file is required for VSCode to work properly | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"extends": "./tsconfig.src.json", | ||
"compilerOptions": { | ||
"rootDir": "src", | ||
"outDir": "lib", | ||
"types": [ | ||
"node" | ||
] | ||
"noEmit": true, | ||
"rootDir": "." | ||
}, | ||
"include": [ | ||
"src" | ||
"src/**/*" | ||
], | ||
"exclude": [ | ||
"**/*.spec.ts", | ||
"**/*.spec.tsx" | ||
"lib", | ||
"node_modules" | ||
], | ||
"references": [ | ||
{ "path": "../sprotty-protocol/tsconfig.json"}, | ||
{ "path": "../sprotty/tsconfig.json" } | ||
{ "path": "../sprotty-protocol/tsconfig.src.json"}, | ||
{ "path": "../sprotty/tsconfig.src.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,21 @@ | ||
{ | ||
"extends": "../../tsconfig.json", | ||
"compilerOptions": { | ||
"rootDir": "src", | ||
"outDir": "lib" | ||
}, | ||
"include": [ | ||
"**/*.ts", | ||
"**/*.tsx" | ||
], | ||
"exclude": [ | ||
"**/*.spec.ts", | ||
"**/*.spec.tsx", | ||
"lib", | ||
"node_modules" | ||
], | ||
"references": [ | ||
{ "path": "../sprotty-protocol/tsconfig.src.json"}, | ||
{ "path": "../sprotty/tsconfig.src.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,19 @@ | ||
{ | ||
"extends": "./tsconfig.src.json", | ||
"compilerOptions": { | ||
"rootDir": "src", | ||
"noEmit": true, | ||
"skipLibCheck": true | ||
}, | ||
"references": [{ | ||
"path": "./tsconfig.src.json" | ||
}], | ||
"include": [ | ||
"**/*.spec.ts", | ||
"**/*.spec.tsx" | ||
], | ||
"exclude": [ | ||
"lib", | ||
"node_modules" | ||
] | ||
} |
Oops, something went wrong.