mirror of
https://github.com/aelve/guide.git
synced 2024-11-23 12:15:06 +03:00
27 lines
558 B
JSON
27 lines
558 B
JSON
|
{
|
||
|
"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"
|
||
|
]
|
||
|
}
|
||
|
}
|