This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/tsconfig.config.json

16 lines
319 B
JSON
Raw Normal View History

2022-04-10 00:40:15 +00:00
{
"extends": "@vue/tsconfig/tsconfig.node.json",
2022-05-22 14:20:06 +00:00
"include": [
"vite.config.*",
"vitest.config.*",
"cypress.config.*",
"env.d.ts",
"env.config.d.ts",
"./src/version.json"
],
2022-04-10 00:40:15 +00:00
"compilerOptions": {
"composite": true,
2022-05-22 14:20:06 +00:00
"types": ["node", "vitest"],
"ignoreDeprecations": "5.0"
2022-04-10 00:40:15 +00:00
}
}