EvalueTonSavoir/server/tsconfig.json

12 lines
249 B
JSON
Raw Normal View History

2024-11-09 18:36:24 -05:00
{
"compilerOptions": {
2024-11-10 10:19:05 -05:00
"target": "ES6",
"module": "commonjs",
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true
2024-11-09 18:36:24 -05:00
},
2024-11-10 10:19:05 -05:00
"include": ["server/**/*.ts"],
"exclude": ["node_modules"]
2024-11-09 18:36:24 -05:00
}