nextcloud-vue/tsconfig.json

20 строки
439 B
JSON
Исходник Постоянная ссылка Обычный вид История

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