hrms-admin/tsconfig.app.json

16 lines
385 B
JSON
Raw Permalink Normal View History

2024-05-29 17:58:57 +07:00
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"exclude": ["src/**/__tests__/*"],
"compilerOptions": {
"composite": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
2024-09-09 13:56:29 +07:00
"lib": ["dom", "es2015", "es2018", "es2018.promise"],
"ignoreDeprecations": "5.0",
"verbatimModuleSyntax": true
2024-05-29 17:58:57 +07:00
}
}