2020-06-04 18:20:48 +00:00
|
|
|
{
|
2020-11-10 19:52:39 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es2020",
|
|
|
|
"module": "es2020",
|
|
|
|
"strict": true,
|
2020-11-13 05:42:26 +00:00
|
|
|
"jsx": "preserve",
|
|
|
|
"importHelpers": true,
|
2020-11-10 19:52:39 +00:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"experimentalDecorators": true,
|
2020-11-13 05:42:26 +00:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"sourceMap": true,
|
2020-11-10 19:52:39 +00:00
|
|
|
"noImplicitAny": false,
|
|
|
|
"allowJs": true,
|
|
|
|
"baseUrl": "src",
|
|
|
|
"types": [
|
2021-11-14 10:50:33 +00:00
|
|
|
"cypress",
|
|
|
|
"vite/client",
|
2020-11-10 19:52:39 +00:00
|
|
|
],
|
|
|
|
"paths": {
|
|
|
|
"@/*": [
|
|
|
|
"./*"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*.ts",
|
|
|
|
"src/**/*.tsx",
|
|
|
|
"src/**/*.vue",
|
2022-06-08 18:49:19 +00:00
|
|
|
"cypress/support/*.ts",
|
2020-11-13 05:42:26 +00:00
|
|
|
],
|
2021-12-18 10:16:15 +00:00
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
// "tests"
|
2022-04-28 17:33:49 +00:00
|
|
|
],
|
|
|
|
"vueCompilerOptions": {
|
2022-05-18 07:48:20 +00:00
|
|
|
"experimentalImplicitWrapComponentOptionsWithDefineComponent": false,
|
2022-10-30 10:01:27 +00:00
|
|
|
"target": 3,
|
2022-04-28 17:33:49 +00:00
|
|
|
"experimentalTemplateCompilerOptions": {
|
|
|
|
"compatConfig": {
|
2022-10-30 10:01:27 +00:00
|
|
|
"MODE": 3
|
2022-04-28 17:33:49 +00:00
|
|
|
} // optional
|
2022-10-12 18:20:46 +00:00
|
|
|
},
|
|
|
|
"experimentalModelPropName": {
|
|
|
|
"": {
|
|
|
|
"b-form-radio": true
|
|
|
|
},
|
2022-04-28 17:33:49 +00:00
|
|
|
}
|
|
|
|
}
|
2020-06-04 18:20:48 +00:00
|
|
|
}
|