linstrom/frontend-src/tsconfig.json
2024-08-22 19:57:53 +02:00

14 lines
406 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-src/tests/*": ["tests/*"],
"frontend-src/*": ["app/*"],
"*": ["types/*"]
}
}
}