mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 14:19:58 +00:00
9800ad5aee
* chore: use npm workspaces * edit workspaces * fix * fix * force workspace order * fix lock? * define max_old_space_size on CI * rm unnecessary bootstrap * fix * cleanup package.json * bump vite and re-add build to bootstrap * define paths on tsconfig * fix some things * add mocha to vite config * bump mocha * remove tsconfigs and project refs * cache npm install * fixed types * assing repo root * merge lint configs * fix clean * fix tests * setup node * lockfile * fix bump * fix lint markdown * temporary disable inso tests * dont use rimraf * simplify clean * fix version * lockfile * inso build * fix lint * lock file * remove cleans * remove unused * tslib hack * redownload node-libcurl * rm version from scripts * fix extrainfo bug * use npm version --------- Co-authored-by: jackkav <jackkav@gmail.com>
26 lines
624 B
JSON
26 lines
624 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowUnreachableCode": true,
|
|
"allowUnusedLabels": false,
|
|
"checkJs": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["DOM", "ES2019"],
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"pretty": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "ES2019",
|
|
"types": ["node"],
|
|
"useUnknownInCatchVariables": false
|
|
},
|
|
}
|