insomnia/tsconfig.base.json

26 lines
624 B
JSON
Raw Normal View History

{
"compilerOptions": {
2022-06-27 16:57:50 +00:00
"allowJs": true,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": true,
"allowUnusedLabels": false,
"checkJs": true,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"lib": ["DOM", "ES2019"],
2022-06-27 16:57:50 +00:00
"module": "CommonJS",
"moduleResolution": "node",
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"pretty": true,
"resolveJsonModule": true,
"sourceMap": true,
"strict": true,
"target": "ES2019",
2022-06-27 16:57:50 +00:00
"types": ["node"],
"useUnknownInCatchVariables": false
2022-06-27 16:57:50 +00:00
},
}