spreed/tsconfig.json
Maksim Sukharev 1b5fb52d36
chore(typescript): ignore JS files when running typescript:check, register env.d.ts, lint TS files
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
2024-03-08 12:28:08 +01:00

15 lines
321 B
JSON

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