mistykey/packages/misskey-js/generator/tsconfig.json

24 lines
424 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",
],
"exclude": [
"node_modules",
"./built"
]
}