Files
citation_sentinel/server/tsconfig.json
2026-05-09 16:41:50 -04:00

18 lines
469 B
JSON

{
"compilerOptions": {
"allowJs": true, // Allow JavaScript files to be imported and compiled
"checkJs": true,
"target": "es2022",
"module": "commonjs",
"outDir": "./dist",
"rootDir": "./src", // Root of input files
"strict": true,
"skipLibCheck": true // Skip checking .d.ts files for faster builds
},
"include": [
"src/**/*"
], // Files to include in the project
"exclude": [
"node_modules"
] // Folders to ignore
}