1
0
Fork 0
mirror of synced 2024-07-04 05:50:57 +12:00
budibase/packages/cli/tsconfig.build.json

26 lines
727 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"lib": ["es2020"],
"strict": true,
"noImplicitAny": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"incremental": true,
2023-08-21 19:20:22 +12:00
"types": ["node", "jest"],
"outDir": "dist",
"skipLibCheck": true,
2024-03-20 04:01:41 +13:00
"baseUrl": ".",
"paths": {
"@budibase/types": ["../types/src"],
"@budibase/backend-core": ["../backend-core/src"],
2023-08-21 19:20:22 +12:00
"@budibase/backend-core/*": ["../backend-core/*"],
2024-03-15 22:38:51 +13:00
"@budibase/shared-core": ["../shared-core/src"],
"@budibase/string-templates": ["../string-templates/src"]
}
},
2023-08-21 19:20:22 +12:00
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.spec.ts", "**/*.spec.js"]
}