c7066c2242
* 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
37 lines
751 B
JSON
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"
|
|
]
|
|
}
|