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

30 lines
607 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"client/*": [
"client/*"
]
},
"jsx": "preserve",
"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"
]
}
}