26 lines
533 B
JSON
26 lines
533 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"es5",
|
|
"es6",
|
|
"DOM"
|
|
],
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"@db/*":["db/*"],
|
|
"@src/*":["./*"]
|
|
},
|
|
"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"]
|
|
}
|