GPTcord/tsconfig.json
Wroclaw 6a31473d22 scripts: move scripts to the project root directory
I believe, that these kind of scripts should reside there
instead of src directory
2023-09-30 14:46:12 +02:00

17 lines
320 B
JSON

{
"include": [
"./src/**/*",
"./scripts/**/*"
],
"compilerOptions": {
"target": "ES2022",
"module": "CommonJS",
"sourceMap": true,
"outDir": "./dist/",
"rootDir": "./",
"strict": true,
"moduleResolution": "node",
"esModuleInterop": true,
"resolveJsonModule": true
}
}