mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
ecba036fe3
* vitest - testing package * remove jest and tidy * sdk tests pass * remove tsconfig * vitest insomnia-inso * snapshots * clean up * remove skipped logs --------- Co-authored-by: gatzjames <jamesgatzos@gmail.com>
25 lines
560 B
JSON
25 lines
560 B
JSON
{
|
|
"compilerOptions": {
|
|
/* Base Options: */
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"target": "es2022",
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"moduleDetection": "force",
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
/* Strictness */
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
/* If NOT transpiling with TypeScript: */
|
|
"module": "preserve",
|
|
"noEmit": true,
|
|
/* If your code runs in the DOM: */
|
|
"lib": [
|
|
"es2022",
|
|
],
|
|
}
|
|
}
|