hrms-admin/tsconfig.config.json

17 lines
330 B
JSON
Raw Normal View History

2024-05-29 17:58:57 +07:00
{
"extends": "@vue/tsconfig/tsconfig.node.json",
2024-11-13 09:43:28 +07:00
"include": [
"vite.config.*",
"vitest.config.*",
"cypress.config.*",
"playwright.config.*"
],
2024-05-29 17:58:57 +07:00
"compilerOptions": {
"composite": true,
2024-09-09 13:56:29 +07:00
"types": ["node"],
"ignoreDeprecations": "5.0",
2024-11-13 09:43:28 +07:00
"verbatimModuleSyntax": true,
"module": "esnext"
2024-05-29 17:58:57 +07:00
}
}