FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
immutable-array-prototype/tsconfig.json at master · azu/immutable-array-prototype · GitHub
azu
/
immutable-array-prototype
Public
Notifications
You must be signed in to change notification settings
Fork
3
Star
59
Code
Issues
3
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
immutable-array-prototype
/
tsconfig.json
Copy path
More file actions
More file actions
Latest commit
History
History
History
29 lines (29 loc) · 789 Bytes
Breadcrumbs
immutable-array-prototype
/
tsconfig.json
Copy path
File metadata and controls
29 lines (29 loc) · 789 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"compilerOptions"
: {
/*
Basic Options
*/
"module"
:
"
commonjs
"
,
"moduleResolution"
:
"
node
"
,
"newLine"
:
"
LF
"
,
"outDir"
:
"
./lib/
"
,
"target"
:
"
es5
"
,
"sourceMap"
:
true
,
"declaration"
:
true
,
"jsx"
:
"
preserve
"
,
//
Transform jsx syntax in babels phase
"lib"
: [
"
es2017
"
,
"
dom
"
],
/*
Strict Type-Checking Options
*/
"strict"
:
true
,
/*
Additional Checks
*/
"noUnusedLocals"
:
true
,
/*
Report errors on unused locals.
*/
"noUnusedParameters"
:
true
,
/*
Report errors on unused parameters.
*/
"noImplicitReturns"
:
true
,
/*
Report error when not all code paths in function return a value.
*/
"noFallthroughCasesInSwitch"
:
true
/*
Report errors for fallthrough cases in switch statement.
*/
}
}
Back
|
FazBrowse Home
|
New Git URL