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