mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 06:12:27 +00:00
36 lines
751 B
JSON
36 lines
751 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
/* Base Options: */
|
||
|
"esModuleInterop": true,
|
||
|
"skipLibCheck": true,
|
||
|
"target": "es2022",
|
||
|
"allowJs": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"module": "ES2022",
|
||
|
"moduleResolution": "node",
|
||
|
"isolatedModules": true,
|
||
|
/* Strictness */
|
||
|
"strict": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"noUnusedParameters": true,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"useUnknownInCatchVariables": false,
|
||
|
"verbatimModuleSyntax": true,
|
||
|
"jsx": "react",
|
||
|
/* If your code runs in the DOM: */
|
||
|
"lib": [
|
||
|
"es2022",
|
||
|
"dom",
|
||
|
"dom.iterable"
|
||
|
],
|
||
|
},
|
||
|
"include": [
|
||
|
"../insomnia/types"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"**/__tests__",
|
||
|
"node_modules"
|
||
|
]
|
||
|
}
|