mirror of
https://github.com/aelve/guide.git
synced 2024-11-22 20:01:36 +03:00
469b5b5790
* DefferedPromise refactor * Moved defferedPromise to utils folder * Base url moved to app file * Store modules states rewrittten according to vue doc recommendations * Deffered promise usage moved * removed unused packages in entries * Structure refactor, easier building, prod building configured, tsconfig reconfigure removed useless packages * Update front/index.html Co-Authored-By: avele <34437766+avele@users.noreply.github.com> * Update front/postcss.config.js Co-Authored-By: avele <34437766+avele@users.noreply.github.com> * Comment rewritten
29 lines
585 B
JSON
29 lines
585 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"
|
|
],
|
|
}
|
|
} |