/ 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        "~cas": ["./src/cas/index.ts"],
12        "@!/*": ["./tests/*"]
13      },
14  
15      "strict": true,
16      "noEmit": true,
17  
18      "allowSyntheticDefaultImports": true,
19      "esModuleInterop": true,
20      "isolatedModules": true,
21      "skipLibCheck": true
22    },
23  
24    "include": ["src", "examples", "tests", "eslint.config.ts", "bunup.config.ts"],
25    "exclude": ["node_modules", "dist"]
26  }