mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 18:23:50 +00:00
52 lines
1.0 KiB
JSON
52 lines
1.0 KiB
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": [
|
|
"cypress",
|
|
"vite/client",
|
|
"unplugin-icons/types/vue",
|
|
],
|
|
"paths": {
|
|
"@/*": [
|
|
"./*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
"cypress/support/*.ts",
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
// "tests"
|
|
],
|
|
"vueCompilerOptions": {
|
|
"experimentalImplicitWrapComponentOptionsWithDefineComponent": false,
|
|
"target": 3,
|
|
"experimentalTemplateCompilerOptions": {
|
|
"compatConfig": {
|
|
"MODE": 3
|
|
} // optional
|
|
},
|
|
"experimentalModelPropName": {
|
|
"": {
|
|
"b-form-radio": true
|
|
},
|
|
}
|
|
}
|
|
}
|