discourse-yearly-review/tsconfig.json
Jarek Radosz 7e7df78782
DEV: Update linting and add types (#109)
* DEV: Update linting and add types

* DEV: Update linting and add types
2026-01-28 11:53:56 +00:00

28 lines
898 B
JSON

{
"extends": "discourse/tsconfig-plugin",
"include": [
"admin/assets/javascripts/**/*",
"assets/javascripts/**/*",
"test/javascripts/**/*",
"node_modules/discourse/declarations/**/*"
],
"compilerOptions": {
"paths": {
"discourse/plugins/discourse-yearly-review/*": [
"./assets/javascripts/*"
],
"discourse/plugins/discourse-yearly-review/admin/*": [
"./admin/assets/javascripts/admin/*"
],
"admin/*": ["./node_modules/discourse/declarations/admin/*"],
"float-kit/*": ["./node_modules/discourse/declarations/float-kit/*"],
"select-kit/*": ["./node_modules/discourse/declarations/select-kit/*"],
"truth-helpers": [
"./node_modules/discourse/declarations/truth-helpers/index.d.ts"
],
"truth-helpers/*": [
"./node_modules/discourse/declarations/truth-helpers/*"
]
}
}
}