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

29 lines
585 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": false,
"esModuleInterop": true,
"resolveJsonModule": true,
"sourceMap": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
2018-11-25 20:26:10 +03:00
"strictNullChecks": false,
"lib": [
"dom",
"es2017",
"es5"
],
}
2018-09-13 10:51:20 +03:00
}