1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-29 14:35:35 +03:00
guide/front/tsconfig.json
avele 0336942072
Frontend E2E tests (#404)
Frontend E2E tests
2019-10-29 00:54:54 +04:00

29 lines
584 B
JSON

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