23 строки
507 B
JSON
23 строки
507 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.json",
|
|
"include": ["./src/**/*.js","./src/**/*.ts", "./src/**/*.vue", "**/*.ts"],
|
|
"exclude": ["tests", "vitest.config.ts"],
|
|
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"noImplicitAny": false,
|
|
"outDir": "./dist",
|
|
"rootDir": ".",
|
|
"strict": true,
|
|
"noEmit": true,
|
|
},
|
|
|
|
"vueCompilerOptions": {
|
|
"target": 3.3,
|
|
},
|
|
}
|