1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-21 14:37:49 +00:00
Files
matomo/tsconfig.json
Stefan Giehl d0b89d2cf0 Replace jQuery.dotdotdot with pure CSS (#22115)
* Remove jQuery.dotdotdot

* Replace jQuery.dotdotdot usage with pure css

* add changelog entry

* remove dotdotdot from tests
2024-04-16 10:26:30 +02:00

46 خطوط
876 B
JSON

{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"typeRoots": [
"./node_modules/@types",
"./plugins/CoreVue/types/index.d.ts"
],
"types": [
"webpack-env",
"jquery",
"jqueryui",
"materialize-css",
"mousetrap"
],
"paths": {
"*": ["@types/*", "*"]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"./plugins/CoreVue/types/index.d.ts",
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue"
],
"exclude": [
"node_modules"
]
}