novelai-bot/tsconfig.json

18 lines
346 B
JSON
Raw Normal View History

2022-10-05 23:12:51 +08:00
{
"compilerOptions": {
"rootDir": "src",
"outDir": "lib",
2023-10-09 22:10:31 +08:00
"target": "es2022",
2024-06-05 15:41:17 +08:00
"module": "esnext",
2022-10-05 23:12:51 +08:00
"declaration": true,
2024-06-05 15:41:17 +08:00
"emitDeclarationOnly": true,
2022-10-05 23:12:51 +08:00
"composite": true,
"incremental": true,
"skipLibCheck": true,
"esModuleInterop": true,
2024-06-05 15:41:17 +08:00
"moduleResolution": "bundler"
2022-10-05 23:12:51 +08:00
},
"include": [
"src"
]
}