/ tsconfig.json
tsconfig.json
 1  {
 2    "compilerOptions": {
 3      "target": "ESNext",
 4  
 5      "emitDecoratorMetadata": true,
 6      "experimentalDecorators": true,
 7      "baseUrl": ".",
 8      "module": "ESNext",
 9      "moduleResolution": "Bundler",
10      "paths": {
11        "~/*": ["./src/*"],
12        "@!/*": ["./tests/*"],
13        "pagiko": ["./src/index.ts"]
14      },
15  
16      "strict": true,
17      "noEmit": true,
18  
19      "allowSyntheticDefaultImports": true,
20      "esModuleInterop": true,
21      "isolatedModules": true,
22      "skipLibCheck": true
23    },
24  
25    "include": ["src", "examples", "tests", "eslint.config.ts", "tsup.config.ts"],
26    "exclude": ["node_modules", "dist"]
27  }