Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
deadlock-desktop
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
deadlock-public
deadlock-desktop
Commits
a9759368
Commit
a9759368
authored
Jun 1, 2022
by
Guillaume WEBER
Browse files
Options
Downloads
Patches
Plain Diff
fix(build): ignore node_modules when building extention + remove duplicate tsconfig
parent
c1496de3
No related branches found
No related tags found
2 merge requests
!14
feat: added mounted, .bashrc, .zshrc, added tests, added keycloak tests
,
!8
feat(extension): login, open in devcontainer, automaticly save code, open briefing, publish extension
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
deadlock-plugins/deadlock-extension/.vscodeignore
+2
-1
2 additions, 1 deletion
deadlock-plugins/deadlock-extension/.vscodeignore
deadlock-plugins/deadlock-extension/tsconfig copy.json
+0
-23
0 additions, 23 deletions
deadlock-plugins/deadlock-extension/tsconfig copy.json
with
2 additions
and
24 deletions
deadlock-plugins/deadlock-extension/.vscodeignore
+
2
−
1
View file @
a9759368
...
@@ -4,3 +4,4 @@ out/
...
@@ -4,3 +4,4 @@ out/
src/
src/
dev/
dev/
tsconfig.json
tsconfig.json
node_modules
\ No newline at end of file
This diff is collapsed.
Click to expand it.
deadlock-plugins/deadlock-extension/tsconfig copy.json
deleted
100644 → 0
+
0
−
23
View file @
c1496de3
{
"compilerOptions"
:
{
"module"
:
"commonjs"
,
"target"
:
"es2019"
,
"lib"
:
[
"ES2019"
],
"sourceMap"
:
true
,
"rootDir"
:
"src"
,
"outDir"
:
"dist"
,
"strict"
:
true
,
"noImplicitAny"
:
false
,
"allowJs"
:
true
,
"types"
:
[
"reflect-metadata"
],
"moduleResolution"
:
"node"
,
"experimentalDecorators"
:
true
,
"emitDecoratorMetadata"
:
true
/*
enable
all
strict
type-checking
options
*/
/*
Additional
Checks
*/
//
"noImplicitReturns"
:
true
,
/*
Report
error
when
not
all
code
paths
in
function
return
a
value.
*/
//
"noFallthroughCasesInSwitch"
:
true
,
/*
Report
errors
for
fallthrough
cases
in
switch
statement.
*/
//
"noUnusedParameters"
:
true
,
/*
Report
errors
on
unused
parameters.
*/
},
"exclude"
:
[
"node_modules"
,
".vscode-test"
,
"dist"
,
"out"
,
"media"
,
"resources"
,
"webpack.config.js"
]
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment