mirror of
https://github.com/Kong/insomnia.git
synced 2026-09-17 08:59:33 -04:00
26 lines
652 B
JSON
26 lines
652 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"lib": ["ES2023", "WebWorker"],
|
|
"types": ["node"],
|
|
"target": "es2022",
|
|
"allowJs": false,
|
|
"resolveJsonModule": true,
|
|
"moduleResolution": "bundler",
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"module": "ESNext",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"useUnknownInCatchVariables": false,
|
|
"verbatimModuleSyntax": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["./**/*.ts"]
|
|
}
|