{
    "compilerOptions": {
      "target": "ES2020",
      "module": "commonjs",
      "moduleResolution": "node",
      "forceConsistentCasingInFileNames": true,
      "esModuleInterop": true,
      "allowSyntheticDefaultImports": true,
      "allowJs": true,
      "strict": true,
      "skipLibCheck": true,
      "sourceMap": true,
      "outDir": "dist",
      "noImplicitAny": false,
      "noImplicitThis": false,
      "strictNullChecks": false,
      "baseUrl": "src",
      "paths": {
        "@/*": ["*"]
      },
      "plugins": [
        {
          "transform": "typescript-transform-paths"
        },
        {
          "transform": "typescript-transform-paths",
          "afterDeclarations": true
        }
      ]
    },
    "include": ["./src/**/*"],
    "exclude": ["node_modules"]
  }