hrms-user/tsconfig.app.json

17 lines
409 B
JSON
Raw Permalink Normal View History

2023-07-07 16:54:53 +07:00
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"exclude": ["src/**/__tests__/*"],
"compilerOptions": {
"composite": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"target": "es2018",
2024-09-02 14:01:01 +07:00
"lib": ["dom", "es2015", "es2018", "es2018.promise"],
"ignoreDeprecations": "5.0",
"verbatimModuleSyntax": true
2023-07-07 16:54:53 +07:00
}
}