mirror of
https://github.com/Kong/insomnia.git
synced 2026-02-14 16:13:00 -05:00
31 lines
786 B
JSON
31 lines
786 B
JSON
{
|
|
"compilerOptions": {
|
|
/* Base Options: */
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"target": "es2022",
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"module": "ES2022",
|
|
"moduleResolution": "bundler",
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"paths": {
|
|
"~/*": ["../insomnia/src/*"]
|
|
},
|
|
/* 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"]
|
|
}
|