Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

skava / @skava/ui   js

Repository URL to install this package:

Version: 4.2.0-a11y.0 

/ tsconfig.base.json

{
  "compilerOptions": {
    "outDir": "dist",
    "module": "commonjs",
    "target": "es6",
    "lib": [
      "dom",
      "es2015",
      "es2016",
      "es2017",
      "es2018",
      "esnext"
    ],
    "skipDefaultLibCheck": true,
    "skipLibCheck": true,

    "importHelpers": true,

    "sourceMap": true,
    "allowJs": false,
    "declaration": true,
    "jsx": "react",
    "moduleResolution": "node",
    "noEmitOnError": false,

    "experimentalDecorators": true,
    "emitDecoratorMetadata": false,

    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,

    "forceConsistentCasingInFileNames": true,
    "noImplicitReturns": true,
    "noImplicitThis": true,
    "noImplicitAny": true,
    "strictNullChecks": true,
    "suppressImplicitAnyIndexErrors": true,
    "noUnusedLocals": false,
    "strictPropertyInitialization": false,
    "strictFunctionTypes": true,

    "rootDirs": [
      "./",
      "./src"
    ],
    "baseUrl": "./",
    "paths": {
      "src/*": [
        "src/*"
      ],
      "words/*": [
        "src/words/*"
      ],
      "features/*": [
        "src/components/features/*"
      ],
      "atoms/*": [
        "src/components/atoms/*"
      ],
      "molecules/*": [
        "src/components/molecules/*"
      ],
      "organisms/*": [
        "src/components/organisms/*"
      ],
      "templates/*": [
        "src/components/templates/*"
      ],
      "icons/*": [
        "src/components/atoms/Icons/*"
      ],
      "presets/*": [
        "src/components/presets/*"
      ],
      "abstractions/*": [
        "src/components/abstractions/*"
      ],
      "input/*": [
        "src/forms/input/*"
      ],
      "form/*": [
        "src/forms/form/*"
      ],
      "typings/*": [
        "src/typings/*"
      ]
    }
  },
  "include": [
    "src/*",
    "src/**/*.ts",
    "src/**/*.tsx"
  ],
  "exclude": [
    "public",
    "node_modules",
    "build",
    "scripts",
    "dist",
    "**/__todo",
    "**/__unused",
    "**/__tests__",
    "**/playground"
  ]
}