mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
24 lines
542 B
JSON
24 lines
542 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ESNext", "DOM"],
|
|
"target": "ESNext",
|
|
"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"]
|
|
}
|