4ea3031fa8
* Update packages and remove unused packages * Update typescript * Don't make unnecessary fetches for endpoints that don't exist on OSS * - Fix switch - Update packages * Remove plugin registered console.log * Fix getRoutes type * - Allow assistant sidebar button to toggle assistant panel when in Execution page - Remove console.log - Coerce value to boolean for checked prop in FormControlLabel --------- Co-authored-by: Viren Baraiya <virenx@gmail.com> Co-authored-by: Naomi Most <naomi.most@orkes.io>
45 lines
1.5 KiB
JSON
45 lines
1.5 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"declaration": true,
|
|
"declarationDir": "./dist",
|
|
"paths": {
|
|
"commonServices": ["./src/commonServices/index.ts"],
|
|
"components": ["./src/components/index.ts"],
|
|
"queryClient": ["./src/queryClient.ts"],
|
|
"types": ["./src/types/index.ts"],
|
|
"useArrowNavigation": ["./src/useArrowNavigation.tsx"],
|
|
"utils": ["./src/utils/index.ts"],
|
|
"components/*": ["./src/components/*"],
|
|
"images/*": ["./src/images/*"],
|
|
"pages/*": ["./src/pages/*"],
|
|
"plugins/*": ["./src/plugins/*"],
|
|
"shared/*": ["./src/shared/*"],
|
|
"theme/*": ["./src/theme/*"],
|
|
"types/*": ["./src/types/*"],
|
|
"utils/*": ["./src/utils/*"],
|
|
"commonServices/*": ["./src/commonServices/*"],
|
|
"growthbook/*": ["./src/growthbook/*"],
|
|
"templates/*": ["./src/templates/*"],
|
|
"testData/*": ["./src/testData/*"]
|
|
},
|
|
"types": ["react", "react-dom", "vite/client", "vitest/globals", "node"]
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|