spreed/tsconfig.json
Maksim Sukharev 2a3c1b7556
fix: add vue/tsconfig, drop ts implementations for .vue files
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
2024-02-27 16:59:38 +01:00

15 lines
304 B
JSON

{
"extends": "@vue/tsconfig/tsconfig.json",
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "vendor"],
"compilerOptions": {
"outDir": "./js",
"allowJs": true,
"checkJs": true,
"allowImportingTsExtensions": true,
"lib": ["ESNext"],
},
"vueCompilerOptions": {
"target": 2.7,
}
}