mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
8cea5edc26
* add smoke test fixture * respect INSOMNIA_DATA_PATH override in CI * add playwright * remove spectron * move CLI tests after app smoke tests in CI * remove onboarding skip * random path feedback * npx feedback * remove DATA_PATH override * remove step from import process * cleanup * restore readme * move specs to tests * feedback on DESIGNER_DATA_PATH * remove skipLibCheck * last mention of spectron * fix windows npm run test:smoke:build * DATA_PATH override is required * github CI is slow sometimes
23 lines
358 B
JSON
23 lines
358 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"outDir": "dist",
|
|
"rootDir": ".",
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitAny": false
|
|
},
|
|
"include": [
|
|
"cli",
|
|
"core",
|
|
"designer",
|
|
"fixtures",
|
|
"modules",
|
|
"server"
|
|
],
|
|
"exclude": [
|
|
"dist"
|
|
]
|
|
}
|