-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
38 lines (38 loc) · 1.28 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"extends": "@adonisjs/tsconfig/tsconfig.app.json",
"compilerOptions": {
"jsx": "react",
"jsxFactory": "Html.createElement",
"jsxFragmentFactory": "Html.Fragment",
"rootDir": "./",
"outDir": "./build",
"paths": {
"#controllers/*": ["./app/controllers/*.js"],
"#exceptions/*": ["./app/exceptions/*.js"],
"#models/*": ["./app/models/*.js"],
"#mails/*": ["./app/mails/*.js"],
"#services/*": ["./app/services/*.js"],
"#listeners/*": ["./app/listeners/*.js"],
"#events/*": ["./app/events/*.js"],
"#middleware/*": ["./app/middleware/*.js"],
"#validators/*": ["./app/validators/*.js"],
"#providers/*": ["./providers/*.js"],
"#policies/*": ["./app/policies/*.js"],
"#abilities/*": ["./app/abilities/*.js"],
"#database/*": ["./database/*.js"],
"#tests/*": ["./tests/*.js"],
"#start/*": ["./start/*.js"],
"#config/*": ["./config/*.js"],
"#primitives/*": ["./fragments/components/primitives/*.js"],
"#components": ["./fragments/components/index.js"],
"#fragments/*": ["./fragments/*.js"],
"#layouts/*": ["./fragments/layouts/*.js"],
"#pages/*": ["./fragments/pages/*.js"]
},
"plugins": [
{
"name": "@kitajs/ts-html-plugin"
}
]
}
}