nextcloud-vue/tsconfig.json

19 строки
410 B
JSON
Исходник Обычный вид История

{
"extends": "@vue/tsconfig/tsconfig.json",
"include": ["./src/**/*.ts"],
"exclude": ["./src/**/*.cy.ts"],
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"moduleResolution": "node",
"target": "ESNext",
"module": "esnext",
"declaration": true,
"strict": true,
"noImplicitAny": false,
"outDir": "./dist",
},
"vueCompilerOptions": {
"target": 3.3
}
}