40 lines
814 B
JSON
40 lines
814 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"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.js",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
"tests/**/*.ts",
|
|
"tests/**/*.tsx"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|