Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
pub
frama-c
Commits
b3933dfa
Commit
b3933dfa
authored
4 years ago
by
Michele Alberti
Browse files
Options
Downloads
Patches
Plain Diff
[config] Allow build emission as intermediate step in order to produce the doc.
parent
1f86dd4f
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
ivette/.gitignore
+1
-0
1 addition, 0 deletions
ivette/.gitignore
ivette/package.json
+2
-1
2 additions, 1 deletion
ivette/package.json
ivette/tsconfig.json
+2
-2
2 additions, 2 deletions
ivette/tsconfig.json
with
5 additions
and
3 deletions
ivette/.gitignore
+
1
−
0
View file @
b3933dfa
...
...
@@ -9,6 +9,7 @@ yarn.lock
yarn-error.log
/bin
/dist
/build
/doc/html
/src/dome
...
...
This diff is collapsed.
Click to expand it.
ivette/package.json
+
2
−
1
View file @
b3933dfa
...
...
@@ -8,7 +8,8 @@
"scripts"
:
{
"lint"
:
"eslint --ext .ts,.tsx --format=stylish ./src"
,
"typecheck"
:
"tsc --noEmit"
,
"typecheck:watch"
:
"yarn run typecheck -- --watch"
"typecheck:watch"
:
"yarn run typecheck -- --watch"
,
"build"
:
"tsc"
},
"devDependencies"
:
{
"@babel/cli"
:
"^7.8.4"
,
...
...
This diff is collapsed.
Click to expand it.
ivette/tsconfig.json
+
2
−
2
View file @
b3933dfa
...
...
@@ -12,12 +12,12 @@
//
"declarationMap"
:
true
,
/*
Generates
a
sourcemap
for
each
corresponding
'.d.ts'
file.
*/
//
"sourceMap"
:
true
,
/*
Generates
corresponding
'.map'
file.
*/
//
"outFile"
:
"./"
,
/*
Concatenate
and
emit
output
to
single
file.
*/
"outDir"
:
"
lib"
,
/*
Redirect
output
structure
to
the
directory.
*/
"outDir"
:
"
build"
,
/*
Redirect
output
structure
to
the
directory.
*/
//
"rootDir"
:
"./"
,
/*
Specify
the
root
directory
of
input
files.
Use
to
control
the
output
directory
structure
with
--outDir.
*/
//
"composite"
:
true
,
/*
Enable
project
compilation
*/
//
"tsBuildInfoFile"
:
"./"
,
/*
Specify
file
to
store
incremental
compilation
information
*/
//
"removeComments"
:
true
,
/*
Do
not
emit
comments
to
output.
*/
"noEmit"
:
tru
e
,
/*
Do
not
emit
outputs.
*/
"noEmit"
:
fals
e
,
/*
Do
not
emit
outputs.
*/
//
"importHelpers"
:
true
,
/*
Import
emit
helpers
from
'tslib'.
*/
//
"downlevelIteration"
:
true
,
/*
Provide
full
support
for
iterables
in
'for-of'
,
spread
,
and
destructuring
when
targeting
'ES
5
'
or
'ES
3
'.
*/
"isolatedModules"
:
true
,
/*
Transpile
each
file
as
a
separate
module
(similar
to
'ts.transpileModule').
*/
...
...
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