link-stack/apps/metamigo-api/tsconfig.json

23 lines
656 B
JSON
Raw Permalink Normal View History

2023-02-13 12:41:30 +00:00
{
2023-03-13 14:42:49 +00:00
"extends": "tsconfig-link",
2023-02-13 12:41:30 +00:00
"compilerOptions": {
"outDir": "build/main",
2023-03-13 14:42:49 +00:00
"rootDir": "src",
2023-05-25 09:27:26 +00:00
"skipLibCheck": true,
2023-03-13 14:42:49 +00:00
"types": ["jest", "node", "long"],
"lib": ["es2020", "DOM"],
"composite": true,
2023-02-13 12:41:30 +00:00
},
2023-03-13 14:42:49 +00:00
"include": ["src/**/*.ts", "src/**/.*.ts"],
"exclude": ["node_modules/**"],
"references": [
{"path": "../../packages/metamigo-common" },
{"path": "../../packages/metamigo-config" },
{"path": "../../packages/metamigo-db" },
{"path": "../../packages/hapi-nextauth" },
{"path": "../../packages/hapi-pg-promise" },
{"path": "../../packages/node-signald" },
{"path": "../../packages/montar" }
]
2023-02-13 12:41:30 +00:00
}