budibase/packages/bbui/tsconfig.json

19 lines
432 B
JSON
Raw Normal View History

2025-01-17 12:02:08 +01:00
{
"extends": "../../tsconfig.build.json",
"compilerOptions": {
"allowJs": true,
"outDir": "./dist",
"lib": ["ESNext"],
"baseUrl": ".",
2025-01-17 12:15:52 +01:00
"paths": {
"@budibase/*": [
"../*/src/index.ts",
"../*/src/index.js",
"../*",
"../../node_modules/@budibase/*"
]
}
2025-01-17 12:02:08 +01:00
},
"include": ["./src/**/*"],
"exclude": ["node_modules", "**/*.json", "**/*.spec.ts", "**/*.spec.js"]
}