decide.nolog.cz/tsconfig.json
Jeldrik Hanschke f0cff27e99
Convert to TypeScript (#713)
* setup typescript

* covert to TypeScript
2023-10-29 19:16:33 +01:00

17 lines
457 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": {
"croodle/tests/*": ["tests/*"],
"croodle/*": ["app/*"],
"fetch": [
"node_modules/ember-fetch"
],
"*": ["types/*"]
}
}
}