Files
speckle-powerbi-visuals/tsconfig.json
T
Alan Rynne c7066c2242 feat: Webpack + Vue + Viewer toolbar (#36)
* feat: Build with webpack

* feat: Vue, tailwind + webpack working

* feat(vue): Upgraded to vue3

Now using our ui-components, with section box and camera views support

* chore: Minor cleanup of logs

* fix: ColorBy must only be grouping in order to color always

* fix: Bind to groupings to prevent conflicts with tooltipData inputs
2023-05-23 16:25:44 +02:00

37 lines
751 B
JSON

{
"compilerOptions": {
"allowJs": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es2020",
"sourceMap": true,
"outDir": "./.tmp/build/",
"moduleResolution": "node",
"declaration": true,
"lib": ["es2020", "dom"],
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"types": [],
"baseUrl": "./",
"paths": {
"src/*": [
"./src/*"
],
"assets/*": [
"./assets/*"
]
}
},
"ts-node": {
"compilerOptions": {
"module": "CommonJS",
"esModuleInterop": true
}
},
"files": ["./src/visual.ts"],
"include": ["./src/**/*.ts", "./src/**/*.vue"],
"exclude": [
"webpack.config.dev.ts"
]
}