mirror of
https://github.com/aelve/guide.git
synced 2024-11-23 04:07:14 +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
27 lines
558 B
JSON
27 lines
558 B
JSON
{
|
|
"files": [
|
|
"./server.ts"
|
|
],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowJs": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"moduleResolution": "node",
|
|
"module": "commonjs",
|
|
"target": "esnext",
|
|
"strict": false,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": false,
|
|
"skipLibCheck": true,
|
|
"skipDefaultLibCheck": true,
|
|
"strictNullChecks": false,
|
|
"lib": [
|
|
"dom",
|
|
"es2017",
|
|
"es5"
|
|
]
|
|
}
|
|
} |