19 lines
435 B
JSON
Executable File
19 lines
435 B
JSON
Executable File
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"declaration": true,
|
|
"target": "ES2018",
|
|
"module": "commonjs",
|
|
"noImplicitAny": true,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"outDir": "./server"
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "test/**/*.ts"]
|
|
}
|