a661e439a0
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
37 lines
654 B
JSON
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"
|
|
]
|
|
}
|