mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-10 10:21:55 +00:00
28 lines
693 B
JSON
28 lines
693 B
JSON
{
|
|
"compilerOptions": {
|
|
// this aligns with Vue's browser support
|
|
"target": "es5",
|
|
// this enables stricter inference for data properties on `this`
|
|
"strict": true,
|
|
// if using webpack 2+ or rollup, to leverage tree shaking:
|
|
"module": "es2020",
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"noImplicitAny": false,
|
|
"allowJs": true,
|
|
"baseUrl": "src",
|
|
"paths": {
|
|
"@/*": [
|
|
"./*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
"tests/**/*.ts",
|
|
"tests/**/*.tsx"
|
|
]
|
|
}
|