mirror of
https://github.com/antebudimir/eslint-plugin-vanilla-extract.git
synced 2025-12-31 08:53:33 +00:00
32 lines
790 B
JSON
32 lines
790 B
JSON
{
|
|
"compilerOptions": {
|
|
// Target and Module Settings
|
|
"target": "es2020",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
|
|
// Output Settings
|
|
"declaration": true,
|
|
"outDir": "./dist",
|
|
|
|
// Type Checking Options
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
"useUnknownInCatchVariables": true,
|
|
|
|
// Interop Options
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
// Other Options
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"verbatimModuleSyntax": true
|
|
},
|
|
"include": ["src/**/*", "*.d.ts"],
|
|
"exclude": ["node_modules", "dist"],
|
|
"typeRoots": ["./node_modules/@types", "./"]
|
|
}
|