memlnaut-nisps/codegen/tsconfig.json

17 lines
388 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "bundler",
"strict": true,
"noImplicitAny": true,
"esModuleInterop": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"types": ["bun-types"]
},
"include": ["**/*.ts"]
}