๐Ÿ“ฆ colinhacks / zshy

๐Ÿ“„ tsconfig.json ยท 27 lines
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{
  "extends": "./shared/tsconfig.base.json",
  "compilerOptions": {
    "target": "ES2020",
    "module": "ESNext",
    "moduleResolution": "Bundler",
    "esModuleInterop": true,
    "strict": true,
    "skipLibCheck": true,
    "forceConsistentCasingInFileNames": true,
    "declaration": true,
    "outDir": "./dist",
    "baseUrl": "${configDir}/src",
    "paths": {
      "@components/*": ["${configDir}/src/components/*"],
      "@/config": ["${configDir}/src/config.ts"],
      "utils/*": ["utils/*"],
      "components/*": ["components/*"],
      "lib/*": ["lib/*"],
      "~/*": ["*"],
      "$config": ["config.ts"],
      "#helpers": ["./utils/helpers.ts"],
      "@utils/*": ["${configDir}/src/utils/*"]
    }
  },
  "include": ["src/**/*"]
}