mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-21 06:37:36 -04:00
27 lines
706 B
JSON
27 lines
706 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": ["es2023", "dom", "dom.iterable"]
|
|
},
|
|
"include": ["../insomnia/types"],
|
|
"exclude": ["**/__tests__", "node_modules"]
|
|
}
|