Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
8011bcad
Commit
8011bcad
authored
Jun 02, 2020
by
aniket-engg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libs tsconfigs
parent
21a393e2
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
69 additions
and
34 deletions
+69
-34
tsconfig.json
libs/remix-analyzer/tsconfig.json
+2
-5
tsconfig.lib.json
libs/remix-analyzer/tsconfig.lib.json
+11
-0
tsconfig.json
libs/remix-astwalker/tsconfig.json
+1
-5
tsconfig.lib.json
libs/remix-astwalker/tsconfig.lib.json
+11
-0
tsconfig.json
libs/remix-solidity/tsconfig.json
+5
-9
tsconfig.lib.json
libs/remix-solidity/tsconfig.lib.json
+11
-0
tsconfig.json
libs/remix-tests/tsconfig.json
+4
-9
tsconfig.lib.json
libs/remix-tests/tsconfig.lib.json
+11
-0
tsconfig.json
libs/remix-url-resolver/tsconfig.json
+2
-6
tsconfig.lib.json
libs/remix-url-resolver/tsconfig.lib.json
+11
-0
No files found.
libs/remix-analyzer/tsconfig.json
View file @
8011bcad
{
"extends"
:
"../../tsconfig.json"
,
"include"
:
[
"src"
,
"index.ts"
],
"compilerOptions"
:
{
"target"
:
"es6"
,
/*
Specify
ECMAScript
target
version
:
'ES
3
'
(default)
,
'ES
5
'
,
'ES
2015
'
,
'ES
2016
'
,
'ES
2017
'
,
'ES
2018
'
or
'ESNEXT'.
*/
"module"
:
"commonjs"
,
/*
Specify
module
code
generation
:
'none'
,
'commonjs'
,
'amd'
,
'system'
,
'umd'
,
'es
2015
'
,
or
'ESNext'.
*/
"lib"
:
[
"dom"
,
"es2018"
],
/*
Specify
library
files
to
be
included
in
the
compilation.
*/
"types"
:
[
"node"
],
"declaration"
:
true
,
/*
Generates
corresponding
'.d.ts'
file.
*/
"sourceMap"
:
true
,
/*
Generates
corresponding
'.map'
file.
*/
"outDir"
:
"./dist"
,
/*
Redirect
output
structure
to
the
directory.
*/
/*
Strict
Type-Checking
Options
*/
"strict"
:
true
,
/*
Enable
all
strict
type-checking
options.
*/
"noImplicitAny"
:
false
,
/*
Raise
error
on
expressions
and
declarations
with
an
implied
'any'
type.
*/
/*
Module
Resolution
Options
*/
"baseUrl"
:
"./src"
,
/*
Base
directory
to
resolve
non-absolute
module
names.
*/
"paths"
:
{
"remix-analyzer"
:
[
"./"
]
},
/*
A
series
of
entries
which
re-map
imports
to
lookup
locations
relative
to
the
'baseUrl'.
*/
"typeRoots"
:
[
"./@types"
,
"./node_modules/@types"
],
"esModuleInterop"
:
true
,
/*
Enables
emit
interoperability
between
CommonJS
and
ES
Modules
via
creation
of
namespace
objects
for
all
imports.
Implies
'allowSyntheticDefaultImports'.
*/
/*
Experimental
Options
*/
"experimentalDecorators"
:
false
,
/*
Enables
experimental
support
for
ES
7
decorators.
*/
}
}
libs/remix-analyzer/tsconfig.lib.json
0 → 100644
View file @
8011bcad
{
"extends"
:
"./tsconfig.json"
,
"compilerOptions"
:
{
"module"
:
"commonjs"
,
"outDir"
:
"../../dist/out-tsc"
,
"declaration"
:
true
,
"rootDir"
:
"./"
,
"types"
:
[
"node"
]
}
}
\ No newline at end of file
libs/remix-astwalker/tsconfig.json
View file @
8011bcad
{
"extends"
:
"../../tsconfig.json"
,
"include"
:
[
"src"
],
"exclude"
:
[
"node_modules"
,
"src/@types"
],
"compilerOptions"
:
{
...
...
@@ -8,15 +9,10 @@
"lib"
:
[
"dom"
,
"es2018"
],
/*
Specify
library
files
to
be
included
in
the
compilation.
*/
"declaration"
:
true
,
/*
Generates
corresponding
'.d.ts'
file.
*/
"sourceMap"
:
true
,
/*
Generates
corresponding
'.map'
file.
*/
"outDir"
:
"./dist"
,
/*
Redirect
output
structure
to
the
directory.
*/
/*
Strict
Type-Checking
Options
*/
"strict"
:
true
,
/*
Enable
all
strict
type-checking
options.
*/
"noImplicitAny"
:
false
,
/*
Raise
error
on
expressions
and
declarations
with
an
implied
'any'
type.
*/
/*
Module
Resolution
Options
*/
"baseUrl"
:
"./src"
,
/*
Base
directory
to
resolve
non-absolute
module
names.
*/
"paths"
:
{
"remix-tests"
:
[
"./"
]
},
/*
A
series
of
entries
which
re-map
imports
to
lookup
locations
relative
to
the
'baseUrl'.
*/
"typeRoots"
:
[
"./@types"
,
"node_modules/@types"
],
/*
List
of
folders
to
include
type
definitions
from.
*/
"esModuleInterop"
:
true
,
/*
Enables
emit
interoperability
between
CommonJS
and
ES
Modules
via
creation
of
namespace
objects
for
all
imports.
Implies
'allowSyntheticDefaultImports'.
*/
"types"
:
[
...
...
libs/remix-astwalker/tsconfig.lib.json
0 → 100644
View file @
8011bcad
{
"extends"
:
"./tsconfig.json"
,
"compilerOptions"
:
{
"module"
:
"commonjs"
,
"outDir"
:
"../../dist/out-tsc"
,
"declaration"
:
true
,
"rootDir"
:
"./src"
,
"types"
:
[
"node"
]
}
}
\ No newline at end of file
libs/remix-solidity/tsconfig.json
View file @
8011bcad
{
"extends"
:
"../../tsconfig.json"
,
"include"
:
[
"src"
,
"index.ts"
],
"compilerOptions"
:
{
"target"
:
"es6"
,
/*
Specify
ECMAScript
target
version
:
'ES
3
'
(default)
,
'ES
5
'
,
'ES
2015
'
,
'ES
2016
'
,
'ES
2017
'
,
'ES
2018
'
or
'ESNEXT'.
*/
"module"
:
"commonjs"
,
/*
Specify
module
code
generation
:
'none'
,
'commonjs'
,
'amd'
,
'system'
,
'umd'
,
'es
2015
'
,
or
'ESNext'.
*/
"lib"
:
[
"dom"
,
"es2018"
],
/*
Specify
library
files
to
be
included
in
the
compilation.
*/
"types"
:
[
"node"
],
"declaration"
:
true
,
/*
Generates
corresponding
'.d.ts'
file.
*/
"sourceMap"
:
true
,
/*
Generates
corresponding
'.map'
file.
*/
"outDir"
:
"./dist"
,
/*
Redirect
output
structure
to
the
directory.
*/
/*
Strict
Type-Checking
Options
*/
"strict"
:
true
,
/*
Enable
all
strict
type-checking
options.
*/
"noImplicitAny"
:
false
,
/*
Raise
error
on
expressions
and
declarations
with
an
implied
'any'
type.
*/
/*
Module
Resolution
Options
*/
"baseUrl"
:
"./src"
,
/*
Base
directory
to
resolve
non-absolute
module
names.
*/
"paths"
:
{
"remix-solidity"
:
[
"./"
]
},
/*
A
series
of
entries
which
re-map
imports
to
lookup
locations
relative
to
the
'baseUrl'.
*/
"noImplicitAny"
:
false
,
"typeRoots"
:
[
"./@types"
,
"./node_modules/@types"
],
"esModuleInterop"
:
true
,
/*
Enables
emit
interoperability
between
CommonJS
and
ES
Modules
via
creation
of
namespace
objects
for
all
imports.
Implies
'allowSyntheticDefaultImports'.
*/
/*
Experimental
Options
*/
"experimentalDecorators"
:
false
,
/*
Enables
experimental
support
for
ES
7
decorators.
*/
]
}
}
\ No newline at end of file
libs/remix-solidity/tsconfig.lib.json
0 → 100644
View file @
8011bcad
{
"extends"
:
"./tsconfig.json"
,
"compilerOptions"
:
{
"module"
:
"commonjs"
,
"outDir"
:
"../../dist/out-tsc"
,
"declaration"
:
true
,
"rootDir"
:
"./"
,
"types"
:
[
"node"
]
}
}
\ No newline at end of file
libs/remix-tests/tsconfig.json
View file @
8011bcad
{
"extends"
:
"../../tsconfig.json"
,
"include"
:
[
"src"
],
"compilerOptions"
:
{
"target"
:
"es5"
,
/*
Specify
ECMAScript
target
version
:
'ES
3
'
(default)
,
'ES
5
'
,
'ES
2015
'
,
'ES
2016
'
,
'ES
2017
'
,
'ES
2018
'
or
'ESNEXT'.
*/
"module"
:
"commonjs"
,
/*
Specify
module
code
generation
:
'none'
,
'commonjs'
,
'amd'
,
'system'
,
'umd'
,
'es
2015
'
,
or
'ESNext'.
*/
"lib"
:
[
"dom"
,
"es2018"
],
/*
Specify
library
files
to
be
included
in
the
compilation.
*/
"types"
:
[
"node"
],
"declaration"
:
true
,
/*
Generates
corresponding
'.d.ts'
file.
*/
"sourceMap"
:
true
,
/*
Generates
corresponding
'.map'
file.
*/
"outDir"
:
"./dist"
,
/*
Redirect
output
structure
to
the
directory.
*/
/*
Strict
Type-Checking
Options
*/
"strict"
:
true
,
/*
Enable
all
strict
type-checking
options.
*/
"noImplicitAny"
:
false
,
/*
Raise
error
on
expressions
and
declarations
with
an
implied
'any'
type.
*/
/*
Module
Resolution
Options
*/
"baseUrl"
:
"./src"
,
/*
Base
directory
to
resolve
non-absolute
module
names.
*/
"paths"
:
{
"remix-tests"
:
[
"./"
]
},
/*
A
series
of
entries
which
re-map
imports
to
lookup
locations
relative
to
the
'baseUrl'.
*/
"noImplicitAny"
:
false
,
"typeRoots"
:
[
"./@types"
,
"./node_modules/@types"
],
"esModuleInterop"
:
true
,
/*
Enables
emit
interoperability
between
CommonJS
and
ES
Modules
via
creation
of
namespace
objects
for
all
imports.
Implies
'allowSyntheticDefaultImports'.
*/
/*
Experimental
Options
*/
"experimentalDecorators"
:
true
,
/*
Enables
experimental
support
for
ES
7
decorators.
*/
]
}
}
libs/remix-tests/tsconfig.lib.json
0 → 100644
View file @
8011bcad
{
"extends"
:
"./tsconfig.json"
,
"compilerOptions"
:
{
"module"
:
"commonjs"
,
"outDir"
:
"../../dist/out-tsc"
,
"declaration"
:
true
,
"rootDir"
:
"./src"
,
"types"
:
[
"node"
]
}
}
\ No newline at end of file
libs/remix-url-resolver/tsconfig.json
View file @
8011bcad
{
"extends"
:
"../../tsconfig.json"
,
"compileOnSave"
:
false
,
"include"
:
[
"./src"
],
"compilerOptions"
:
{
"baseUrl"
:
"./src"
,
"outDir"
:
"./dist"
,
"sourceMap"
:
true
,
"declaration"
:
true
,
"module"
:
"commonjs"
,
"strict"
:
true
,
"noImplicitAny"
:
false
,
"strictPropertyInitialization"
:
false
,
"experimentalDecorators"
:
true
,
"target"
:
"es5"
,
"typeRoots"
:
[
"node_modules/@types"
],
"lib"
:
[
"dom"
,
"es2018"
],
"paths"
:
{
"remix-url-resolver"
:
[
"./"
]
}
"types"
:
[
"node"
],
}
}
libs/remix-url-resolver/tsconfig.lib.json
0 → 100644
View file @
8011bcad
{
"extends"
:
"./tsconfig.json"
,
"compilerOptions"
:
{
"module"
:
"commonjs"
,
"outDir"
:
"../../dist/out-tsc"
,
"declaration"
:
true
,
"rootDir"
:
"./src"
,
"types"
:
[
"node"
]
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment