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

25 lines
456 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/autogen/**/*.ts"
],
"exclude": [
"node_modules",
"./built/**/*.js"
]
}