linstrom/frontend-old-ember/tsconfig.json
mStar 88398334fe
JS frontend stuff
Move old ember frontend to properly named folder
Add vue based new frontend
2025-07-07 21:48:39 +02:00

14 lines
416 B
JSON

{
"extends": "@tsconfig/ember/tsconfig.json",
"compilerOptions": {
// The combination of `baseUrl` with `paths` allows Ember's classic package
// layout, which is not resolvable with the Node resolution algorithm, to
// work with TypeScript.
"baseUrl": ".",
"paths": {
"frontend-reactive/tests/*": ["tests/*"],
"frontend-reactive/*": ["app/*"],
"*": ["types/*"]
}
}
}