budibase/packages/client/tsconfig.json

21 lines
417 B
JSON
Raw Permalink Normal View History

2024-04-02 22:14:14 +02:00
{
"compilerOptions": {
"allowJs": true,
"strict": true,
"outDir": "dist",
2024-11-26 17:06:55 +01:00
"allowSyntheticDefaultImports": true,
"target": "ESNext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
2024-04-02 22:14:14 +02:00
"paths": {
"@budibase/*": [
"../*/src/index.ts",
"../*/src/index.js",
"../*",
"../../node_modules/@budibase/*"
],
"*": ["./src/*"]
}
}
2024-04-02 22:14:14 +02:00
}