2023-01-04 10:01:07 +03:00
|
|
|
{
|
2023-06-22 15:57:39 +03:00
|
|
|
"extends": "@vue/tsconfig",
|
|
|
|
"include": ["./src/**/*.ts"],
|
|
|
|
"exclude": ["./src/**/*.cy.ts"],
|
2023-01-04 10:01:07 +03:00
|
|
|
"compilerOptions": {
|
2024-11-06 17:24:00 +03:00
|
|
|
"allowImportingTsExtensions": true,
|
2023-01-04 10:01:07 +03:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2024-01-23 17:37:55 +03:00
|
|
|
"moduleResolution": "Bundler",
|
2023-01-04 10:01:07 +03:00
|
|
|
"target": "ESNext",
|
|
|
|
"module": "esnext",
|
|
|
|
"declaration": true,
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"outDir": "./dist",
|
2023-11-01 20:17:37 +03:00
|
|
|
},
|
|
|
|
"vueCompilerOptions": {
|
|
|
|
"target": 2.7
|
2023-01-04 10:01:07 +03:00
|
|
|
}
|
|
|
|
}
|