{
    "compilerOptions": {
        "baseUrl": "./",
        "declaration": false,
        "emitDecoratorMetadata": true,
        "noImplicitAny": true,
        "experimentalDecorators": true,
        "lib": ["es2016", "dom"],
        "module": "commonjs",
        "moduleResolution": "node",
        "jsx": "react",
        "jsxFactory": "Pecular",
        "outDir": "./build",
        "rootDirs": ["./"],
        "sourceMap": true,
        "target": "es2018",
        "typeRoots": ["./node_modules/@types"],
        "paths": {
            "@app/*": ["./*"],
        },
        "plugins": [{
                "transform": "typescript-transform-paths",
                "afterDeclarations": true
            },
            {
                "transform": "typescript-transform-paths"
            }
        ]
    }
}