Home / File/ tsconfig.base.json — tailwindcss Source File

tsconfig.base.json — tailwindcss Source File

Architecture documentation for tsconfig.base.json, a json file in the tailwindcss codebase.

Entity Profile

Source Code

{
  "compilerOptions": {
    "target": "es2022",
    "lib": ["es2022", "esnext.disposable", "dom"],

    "module": "ESNext",
    "moduleDetection": "force",
    "allowJs": true,

    "moduleResolution": "Bundler",
    "allowImportingTsExtensions": true,
    "verbatimModuleSyntax": true,
    "isolatedModules": true,
    "preserveConstEnums": true,
    "noEmit": true,

    "skipLibCheck": true,
    "strict": true,
    "noFallthroughCasesInSwitch": true,
    "forceConsistentCasingInFileNames": true
  },
  "include": ["**/*.ts"],
  "exclude": ["node_modules"]
}

Frequently Asked Questions

What does tsconfig.base.json do?
tsconfig.base.json is a source file in the tailwindcss codebase, written in json.
Where is tsconfig.base.json in the architecture?
tsconfig.base.json is located at packages/tsconfig.base.json (directory: packages).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free