1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-23 21:13:07 +03:00
guide/front/tsconfig.json

26 lines
504 B
JSON
Raw Normal View History

{
"compilerOptions": {
2018-09-13 10:51:20 +03:00
"baseUrl": ".",
"paths": {
"client/*": [
"client/*"
]
},
"allowSyntheticDefaultImports": true,
"allowJs": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"moduleResolution": "node",
"module": "esnext",
2018-09-13 10:51:20 +03:00
"target": "es5",
"strict": true,
"sourceMap": true,
2018-09-13 10:51:20 +03:00
"declaration": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"lib": [
"dom",
2018-09-13 10:51:20 +03:00
"es2017"
]
}
2018-09-13 10:51:20 +03:00
}