Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
typescript_BOGUET_Thomas
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
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BOGUET Thomas
typescript_BOGUET_Thomas
Commits
a000aae8
Commit
a000aae8
authored
2 weeks ago
by
BOGUET Thomas
Browse files
Options
Downloads
Patches
Plain Diff
Ex
parent
6257cae5
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
qualdev/Td_debug/exercice.ts
+9
-0
9 additions, 0 deletions
qualdev/Td_debug/exercice.ts
qualdev/Td_debug/launch.json
+19
-0
19 additions, 0 deletions
qualdev/Td_debug/launch.json
qualdev/Td_debug/tsconfig.json
+16
-0
16 additions, 0 deletions
qualdev/Td_debug/tsconfig.json
with
44 additions
and
0 deletions
qualdev/Td_debug/exercice.ts
0 → 100644
+
9
−
0
View file @
a000aae8
// exercice1
function
deb1
():
number
{
let
j
=
200
;
for
(
let
i
=
0
;
i
<
10
;
i
++
)
{
j
-=
10
;
}
return
j
;
}
console
.
log
(
deb1
());
\ No newline at end of file
This diff is collapsed.
Click to expand it.
qualdev/Td_debug/launch.json
0 → 100644
+
19
−
0
View file @
a000aae8
{
"version"
:
"0.2.0"
,
"configurations"
:
[
{
"type"
:
"pwa-node"
,
"request"
:
"launch"
,
"name"
:
"Deno: Run exercice.ts"
,
"program"
:
"${workspaceFolder}/exercice.ts"
,
//
Fichier
TypeScript
à
exécuter
"cwd"
:
"${workspaceFolder}"
,
"runtimeExecutable"
:
"deno"
,
//
Utilise
Deno
comme
exécutable
"runtimeArgs"
:
[
"run"
,
"--inspect"
,
//
Active
le
débogage
"--allow-all"
//
Donne
toutes
les
permissions
(ajustez
selon
vos
besoins)
],
"attachSimplePort"
:
9229
}
]
}
This diff is collapsed.
Click to expand it.
qualdev/Td_debug/tsconfig.json
0 → 100644
+
16
−
0
View file @
a000aae8
{
"compilerOptions"
:
{
"target"
:
"es6"
,
//
Specify
ECMAScript
target
version
"module"
:
"commonjs"
,
//
Specify
module
code
generation
"strict"
:
true
,
//
Enable
all
strict
type-checking
options
"esModuleInterop"
:
true
,
//
Enable
interoperability
between
CommonJS
and
ES
Modules
"sourceMap"
:
true
//
Generate
source
maps
for
debugging
},
"include"
:
[
"./**/*.ts"
//
Include
all
TypeScript
files
in
the
project
],
"exclude"
:
[
"node_modules"
,
//
Exclude
node_modules
folder
"**/*.exercice.ts"
//
Exclude
test
files
]
}
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