tethys.frontend/tsconfig.json
Arno Kaimbacher cfc81f2d90 - added DataMetricsBadge.vue component for showing metrics downloads, views and citations
- npm updates
- new major version typescript 5
2023-06-15 13:51:53 +02:00

42 lines
745 B
JSON

{
"compilerOptions": {
"target": "esnext",
//what module code is generated
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"types": [
"webpack-env"
],
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": [
"node_modules"
]
}