{ "extends": "../../tsconfig.json", "compilerOptions": { "composite": true, "noEmit": false, "declaration": true, "declarationMap": true, "emitDeclarationOnly": true, "outDir": "build/ts", "rootDir": "src", "tsBuildInfoFile": "build/ts/.tsbuildinfo", "paths": { // TODO: move to subpath imports "@desktop-client/*": ["./src/*"] }, "plugins": [{ "name": "typescript-strict-plugin", "paths": ["."] }] }, "references": [ { "path": "../loot-core" }, { "path": "../component-library" } ], "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.js"], "exclude": [ "node_modules", "build", "**/service-worker/**", "e2e", "**/*.test.ts", "**/*.test.tsx", "**/setupTests.ts" ] }