{ "compilerOptions": { "target": "ES2022", "module": "commonjs", "lib": ["ES2022", "DOM"], "outDir": "./dist", "rootDir": "./src", "strict": false, "noImplicitAny": false, "esModuleInterop": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true, "resolveJsonModule": true, "declaration": true, "declarationMap": true, "sourceMap": true, "paths": { "@shared/*": ["./src/shared/*"], "@discovery/*": ["./src/discovery/*"], "@profiling/*": ["./src/profiling/*"] } }, "include": ["src/**/*"], "exclude": ["node_modules", "dist"] }