mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
22 lines
385 B
JSON
22 lines
385 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"emitDeclarationOnly": true,
|
|
"experimentalDecorators": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react",
|
|
"lib": ["DOM"],
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"exclude": [
|
|
"**/*.test.ts",
|
|
"**/*.test.tsx",
|
|
"src/jest",
|
|
],
|
|
}
|