mirror of
https://github.com/movie-web/backend.git
synced 2025-09-13 08:23:26 +00:00
25 lines
469 B
JSON
25 lines
469 B
JSON
{
|
|
"ts-node": {
|
|
"files": true
|
|
},
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"target": "es6",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"baseUrl": "src",
|
|
"experimentalDecorators": true,
|
|
"isolatedModules": false,
|
|
"emitDecoratorMetadata": true,
|
|
"strict": true,
|
|
"paths": {
|
|
"@*": ["./*"]
|
|
}
|
|
},
|
|
"lib": ["es6"],
|
|
"include": ["src/"]
|
|
}
|