mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
27 lines
406 B
JSON
27 lines
406 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"rootDir": "."
|
|
},
|
|
"include": [
|
|
"src",
|
|
"package.json",
|
|
"**/*.d.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist",
|
|
"src/jest",
|
|
"jest.config.js",
|
|
"bin",
|
|
"assets",
|
|
"scripts",
|
|
|
|
"**/@types/mocha",
|
|
"**/*.test.ts",
|
|
"**/__snapshots__/**",
|
|
"**/__mocks__/*"
|
|
]
|
|
}
|