1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-23 12:15:06 +03:00
guide/front/prod.tsconfig.json

27 lines
558 B
JSON
Raw Normal View History

{
"files": [
"./server.ts"
],
"compilerOptions": {
"baseUrl": ".",
"allowSyntheticDefaultImports": true,
"allowJs": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"moduleResolution": "node",
"module": "commonjs",
"target": "esnext",
"strict": false,
"esModuleInterop": true,
"resolveJsonModule": true,
"sourceMap": false,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"strictNullChecks": false,
"lib": [
"dom",
"es2017",
"es5"
]
}
}