summaryrefslogtreecommitdiffstats
path: root/tsconfig.json
blob: b3462597e8696234845ea6474cd3be7fe0c57d89 (plain) (blame)
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
{
  "extends": "@adonisjs/tsconfig/tsconfig.app.json",
  "include": ["**/*"],
  "exclude": ["node_modules", "build", "recipes"],
  "compilerOptions": {
    "outDir": "build",
    "rootDir": "./",
    "strict": true,
    "incremental": true,
    "paths": {
      "#app/*": ["./app/*.js"],
      "#controllers/*": ["./app/controllers/*.js"],
      "#models/*": ["./app/Models/*.js"],
      "#services/*": ["./app/services/*.js"],
      "#listeners/*": ["./app/listeners/*.js"],
      "#events/*": ["./app/events/*.js"],
      "#middleware/*": ["./app/Middleware/*.js"],
      "#validators/*": ["./app/validators/*.js"],
      "#database/*": ["./database/*.js"],
      "#tests/*": ["./tests/*.js"],
      "#start/*": ["./start/*.js"],
      "#config/*": ["./config/*.js"],
      "#types/*": ["./types/*.js"]
    },
    "types": ["fs-extra"],
    "noFallthroughCasesInSwitch": true,
    "resolveJsonModule": true,
    "forceConsistentCasingInFileNames": true,
    "useUnknownInCatchVariables": false,
    "noImplicitReturns": true,
    "strictPropertyInitialization": false
  }
}