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

13 lines
285 B
JSON
Raw 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"],
2023-02-13 12:41:30 +00:00
"lib": ["es2020", "DOM"]
},
2023-03-13 14:42:49 +00:00
"include": ["src/**/*.ts", "src/**/.*.ts"],
"exclude": ["node_modules/**"]
2023-02-13 12:41:30 +00:00
}