1{ 2 "extends": "../tsconfig.json", 3 "compilerOptions": { 4 "baseUrl": ".", 5 "outDir": "dist", 6 "lib": ["dom", "dom.iterable", "ESNext"] 7 }, 8 "include": [ 9 "next-env.d.ts", 10 "**/*.ts", 11 "**/*.tsx", 12 "software-inventory/*.json", 13 "components/landing/*.json", 14 "locales/*/*.json", 15 "locales/en/common.ts" 16 ], 17 "exclude": ["node_modules", "public", "styles", "dist"], 18 "references": [ 19 { "path": "../backend" }, 20 { "path": "../database" }, 21 { "path": "../frontend" }, 22 { "path": "../server" }, 23 { "path": "../util" } 24 ] 25} 26 27