Files
weli a661e439a0 chore: initialize frontend repo with teaching terminology updates
Add the current frontend codebase with a baseline .gitignore and update piano-specific UI terms to teaching-oriented terms for the current product context.

Made-with: Cursor
2026-04-23 16:37:14 +08:00

37 lines
654 B
JSON

{
"compilerOptions": {
"target": "es2019",
"module": "es2022",
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"lib": [
"es2019",
"dom"
],
"baseUrl": ".",
"paths": {
"~/*": [
"src/*"
],
"@authcore/commons": [
"node_modules/@authcore/commons/src/index.ts"
]
},
"plugins": [
{
"name": "@vuedx/typescript-plugin-vue"
}
]
},
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue"
]
}