summaryrefslogtreecommitdiffstats
path: root/apps/projects/src/tsconfig.json
blob: c60fce6b8a39211c9e332fc0f80641916db4f0ea (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
{
  "include": [
    "./**/*.d.ts",
    "./**/*.ts",
    "./**/*.js",
    "./**/*.svelte"
  ],
  "exclude": [
    "./node_modules"
  ],
  "compilerOptions": {
    "target": "esnext",
    "useDefineForClassFields": true,
    "module": "esnext",
    "moduleResolution": "node",
    "allowJs": true,
    "checkJs": false,
    "paths": {
      "$app/*": [
        "./app/*"
      ],
      "$shared/*": [
        "../../web-shared/src/*"
      ]
    }
  }
}