bun-postcss-plugin/tsconfig.json

32 lines
837 B
JSON

2023-09-29 16:41:39 +02:00
{
"compilerOptions": {
/* Base Options: */
"esModuleInterop": true,
"skipLibCheck": true,
"target": "es2022",
"verbatimModuleSyntax": true,
"allowSyntheticDefaultImports": true,
"allowJs": true,
"resolveJsonModule": true,
"allowImportingTsExtensions": true,
"moduleDetection": "force",
/* Strictness */
"strict": true,
"noUncheckedIndexedAccess": true,
"forceConsistentCasingInFileNames": true,
/* If NOT transpiling with TypeScript: */
"moduleResolution": "Bundler",
"module": "ESNext",
"noEmit": true,
/* If your code doesn't run in the DOM: */
"lib": ["es2022"],
/* If you're building for a library: */
"declaration": true,
/* Bun specific options*/
"types": [
"bun-types" // add Bun global
]
},
"include": ["src/*.ts"]
}