Files
bigcapital/server/tsconfig.json
2020-08-30 22:11:14 +02:00

19 lines
378 B
JSON

{
"compilerOptions": {
"outDir": "./dist/",
"sourceMap": true,
"noImplicitAny": true,
"module": "commonjs",
"target": "es5",
"jsx": "react",
"allowJs": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"baseUrl": "./",
"paths": {
"@": ["src/"],
"~": ["tests/"]
}
}
}