mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
19 lines
313 B
JSON
19 lines
313 B
JSON
|
{
|
||
|
"extends": "../../tsconfig.base.json",
|
||
|
"compilerOptions": {
|
||
|
"composite": true,
|
||
|
"outDir": "dist",
|
||
|
"rootDir": "src",
|
||
|
"resolveJsonModule": true,
|
||
|
"strict": true,
|
||
|
},
|
||
|
"include": [
|
||
|
"src",
|
||
|
"**/*.schema.json",
|
||
|
"**/*.d.ts"
|
||
|
],
|
||
|
"exclude": [
|
||
|
"dist",
|
||
|
"**/*.test.ts",
|
||
|
],
|
||
|
}
|