55c736118b
* feat(frontend): help message for disabled checkboxes on commit cards * refactor: share-stream-dialog cleanup * refactor: further share-stream-dialog prep for more usages * feat(server): sharing directly from commit grid cards * feat(server): sharing directly from commit list cards * refactor: removing unnecessary dev tests
47 lines
920 B
JSON
47 lines
920 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "es2020",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"importHelpers": true,
|
|
"moduleResolution": "node",
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"sourceMap": true,
|
|
"allowJs": true,
|
|
"noEmit": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
|
|
"types": [
|
|
"vue-infinite-loading",
|
|
"type-fest",
|
|
"vue",
|
|
"@types/node",
|
|
"@types/mixpanel-browser",
|
|
"vuetify",
|
|
"@types/dompurify",
|
|
"vite/client"
|
|
]
|
|
},
|
|
"vueCompilerOptions": {
|
|
"target": 2.7
|
|
},
|
|
"ts-node": {
|
|
"swc": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.js",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
"tests/**/*.ts",
|
|
"tests/**/*.tsx"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|