{ "compilerOptions": { "outDir": "./dist/public", "module": "es6", "incremental": true, "target": "esnext", "allowJs": true, "checkJs": false, "skipLibCheck": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, "strict": true, "forceConsistentCasingInFileNames": true, "noFallthroughCasesInSwitch": true, "moduleResolution": "bundler", "isolatedModules": true, "noEmit": false, "jsx": "react-jsx", "noImplicitReturns": true, "noImplicitAny": true, "noImplicitThis": true, "strictNullChecks": true, "noUnusedLocals": true, "removeComments": true, "resolveJsonModule": true, "lib": [ "dom", "dom.iterable", "esnext" ], "paths": { "@@/*": [ "./app/react/components/*" ], "@/*": [ "./app/*" ], "yaml-schema": [ "./node_modules/codemirror-json-schema/dist/yaml" ] }, "types": [ "vitest/globals", "@testing-library/jest-dom", "node" ] }, "exclude": [ "api", "build", "dist", "distribution", "node_modules", "test", "webpack" ], "include": [ "app", ".storybook" ] }