mistykey/packages/misskey-js/generator/tsconfig.json
2025-11-05 19:20:04 -05:00

22 lines
408 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "nodenext",
"strict": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"skipLibCheck": true,
"esModuleInterop": true,
"incremental": true,
"lib": [
"esnext",
]
},
"include": [
"src/**/*.ts",
"built/**/*.ts"
],
"exclude": []
}