Hey it's me again, but this time, i can't get some of my files to compile, and I really don't know why.
Here is my ts config:
{
"compilerOptions": {
"declaration": true,
"outDir": "dist",
"rootDir": "src",
"target": "ES2022",
"module": "NodeNext",
"lib": ["ES2020"],
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": false,
"moduleResolution": "node16",
"removeComments": true,
"preserveConstEnums": true,
"noImplicitAny": true,
"resolveJsonModule": true
},
"include": [
"src/*",
"src/**/*",
"src/**/**/*",
"src/database/*.sqlite"
],
"exclude": [
"node_modules",
"dist",
"tests"
]
}
and here is my ts file structure:
