GPTcord/tsconfig.json

18 lines
320 B
JSON
Raw Normal View History

2023-03-14 21:16:54 +01:00
{
"include": [
"./src/**/*",
"./scripts/**/*"
],
2023-03-14 21:16:54 +01:00
"compilerOptions": {
2023-07-22 20:12:13 +02:00
"target": "ES2022",
"module": "CommonJS",
2023-03-14 21:16:54 +01:00
"sourceMap": true,
"outDir": "./dist/",
"rootDir": "./",
2023-03-14 21:16:54 +01:00
"strict": true,
"moduleResolution": "node",
"esModuleInterop": true,
"resolveJsonModule": true
2023-03-14 21:16:54 +01:00
}
}