hrms-checkin/tsconfig.config.json

17 lines
330 B
JSON
Raw Normal View History

2023-11-14 17:47:43 +07:00
{
"extends": "@vue/tsconfig/tsconfig.node.json",
"include": [
"vite.config.*",
"vitest.config.*",
"cypress.config.*",
"playwright.config.*"
],
"compilerOptions": {
"composite": true,
2024-11-13 09:46:06 +07:00
"types": ["node"],
2023-11-14 17:47:43 +07:00
"ignoreDeprecations": "5.0",
2024-11-13 09:46:06 +07:00
"verbatimModuleSyntax": true,
"module": "esnext"
2023-11-14 17:47:43 +07:00
}
}