1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-23 12:15:06 +03:00
guide/front/tsconfig.json
2018-09-13 12:51:20 +05:00

26 lines
504 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"client/*": [
"client/*"
]
},
"allowSyntheticDefaultImports": true,
"allowJs": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"moduleResolution": "node",
"module": "esnext",
"target": "es5",
"strict": true,
"sourceMap": true,
"declaration": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"lib": [
"dom",
"es2017"
]
}
}