bufferStuff/tsconfig.json

13 lines
241 B
JSON
Raw Normal View History

2023-04-28 16:47:02 +01:00
{
"compilerOptions": {
2023-05-15 09:50:18 +01:00
"module": "CommonJS",
2023-04-28 16:47:02 +01:00
"moduleResolution": "node",
2023-10-24 12:04:16 +01:00
"target": "ES2020",
2023-04-28 16:47:02 +01:00
"esModuleInterop": true,
"resolveJsonModule": true,
"rootDir": "./",
2023-05-15 09:50:18 +01:00
"outDir": "./lib/",
2023-05-12 10:53:44 +01:00
"strict": true,
"declaration": true
2023-04-28 16:47:02 +01:00
}
2023-05-12 13:56:42 +01:00
}