Files
zod-schema-class/tsconfig.json
Julien Valverdé f0b2e5242d
All checks were successful
continuous-integration/drone/push Build is passing
tsconfig.json fix for build
2024-03-23 01:12:01 +01:00

25 lines
558 B
JSON

{
"compilerOptions": {
"lib": ["ESNext"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
// "allowImportingTsExtensions": true,
// "noEmit": true,
"declaration": true,
// "composite": true,
"strict": true,
"downlevelIteration": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"types": [
"bun-types"
]
},
"include": ["src"]
}