crgs/jsconfig.json

13 lines
201 B
JSON
Raw Permalink Normal View History

2026-04-22 10:28:54 +08:00
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
2026-04-22 16:16:36 +08:00
"@/*": ["./src/*"]
2026-04-22 10:28:54 +08:00
},
2026-04-22 16:16:36 +08:00
"target": "ES2021",
"checkJs": true,
"lib": ["ES2021", "DOM"]
2026-04-22 10:28:54 +08:00
},
2026-04-22 16:16:36 +08:00
"include": ["./src/**/*"]
}