2020-07-24 01:32:59 -05:00
|
|
|
{
|
2020-08-18 11:13:12 -05:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"lib": [
|
|
|
|
|
"es5",
|
2020-09-11 10:24:48 -05:00
|
|
|
"es6",
|
|
|
|
|
"DOM"
|
2020-08-18 11:13:12 -05:00
|
|
|
],
|
|
|
|
|
"baseUrl": "./src",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@db/*":["db/*"],
|
|
|
|
|
"@src/*":["./*"]
|
|
|
|
|
},
|
2020-09-11 10:24:48 -05:00
|
|
|
"target": "esnext",
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"removeComments": true,
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"allowSyntheticDefaultImports": false,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"experimentalDecorators": true
|
|
|
|
|
},
|
|
|
|
|
"include": ["./src/**/*.tsx", "./src/**/*.ts"],
|
|
|
|
|
"exclude": ["node_modules"]
|
2020-08-18 11:13:12 -05:00
|
|
|
}
|