20 lines
484 B
JSON
20 lines
484 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"isolatedModules": false,
|
|
"outDir": "build/src/backend",
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"baseUrl": ".",
|
|
"resolveJsonModule": true
|
|
},
|
|
"exclude": ["node_modules", "dist"],
|
|
"include": [
|
|
"backend/**/*.ts",
|
|
"backend/**/*.json",
|
|
"backend/images/**/**/*"
|
|
, "backend/server.js" ]
|
|
} |