about summary refs log tree commit diff
path: root/client/tsconfig.json
blob: b6006c89320a4e458127951f25e828a4ae0d0103 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
    "compilerOptions": {
        "moduleResolution": "node",
        "target": "es2017",
        "importsNotUsedAsValues": "error",
        "isolatedModules": true,
        "sourceMap": true,
        "esModuleInterop": true,
        "skipLibCheck": true,
        "forceConsistentCasingInFileNames": true,
        "baseUrl": ".",
        "paths": {
            "$components/*": ["./src/components/*"],
            "$actions/*": ["./src/actions/*"],
            "$data/*": ["./src/data/*"],
            "$utils/*": ["./src/utils/*"]
        }
    },
    "include": ["src/**/*"],
    "exclude": ["node_modules/*", ".svelte"]
}