nextcloud-vue/tsconfig.json

22 строки
486 B
JSON

{
"extends": "@vue/tsconfig/tsconfig.json",
"include": ["./src/**/*.js","./src/**/*.ts", "./src/**/*.vue", "**/*.ts"],
"exclude": ["tests"],
"compilerOptions": {
"allowJs": true,
"allowSyntheticDefaultImports": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
"noImplicitAny": false,
"outDir": "./dist",
"rootDir": ".",
"strict": true,
"noEmit": true,
},
"vueCompilerOptions": {
"target": 3.3,
},
}