18 lines
440 B
JSON
18 lines
440 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": ".",
|
|
"composite": true,
|
|
"ignoreDeprecations": "5.0",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
},
|
|
"strict": true
|
|
},
|
|
"exclude": ["src/**/__tests__/*", "src/**/*.cy.ts"],
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"]
|
|
}
|