mirror of
https://github.com/Kong/insomnia.git
synced 2026-06-03 05:35:56 -04:00
Move insomnia-data models, services, database code, and common utilities into a dedicated workspace package. Update consumers to import from the new package entrypoints and declare workspace dependencies for the extracted package.
28 lines
740 B
JSON
28 lines
740 B
JSON
{
|
|
"compilerOptions": {
|
|
/* Base Options: */
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"target": "es2022",
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "bundler",
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"useUnknownInCatchVariables": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
/* Strictness */
|
|
"strict": true,
|
|
"noImplicitOverride": true,
|
|
/* If NOT transpiling with TypeScript: */
|
|
"module": "ESNext",
|
|
"noEmit": true,
|
|
/* If your code runs in the DOM: */
|
|
"lib": ["es2022", "WebWorker"]
|
|
}
|
|
}
|