frequi_origin/tsconfig.json
Matthias 713afd925d
Merge pull request #802 from freqtrade/dependabot/npm_and_yarn/main/cypress-10.0.3
build(deps-dev): bump cypress from 9.7.0 to 10.0.3
2022-06-08 21:03:33 +02:00

48 lines
939 B
JSON

{
"compilerOptions": {
"target": "es2020",
"module": "es2020",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"noImplicitAny": false,
"allowJs": true,
"baseUrl": "src",
"types": [
// "webpack-env",
// "jest",
"cypress",
"vite/client",
],
"paths": {
"@/*": [
"./*"
]
}
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"cypress/support/*.ts",
],
"exclude": [
"node_modules",
// "tests"
],
"vueCompilerOptions": {
"experimentalImplicitWrapComponentOptionsWithDefineComponent": false,
"target": 2,
"experimentalTemplateCompilerOptions": {
"compatConfig": {
"MODE": 2
} // optional
}
}
}