Files
bigcapital/packages/server/tsconfig.json
2023-02-03 11:57:50 +02:00

36 lines
710 B
JSON

{
"compilerOptions": {
"target": "es2017",
"lib": [
"es2017",
"esnext.asynciterable"
],
"typeRoots": [
"./node_modules/@types",
"./src/types"
],
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"module": "commonjs",
"pretty": true,
"sourceMap": true,
"outDir": "./build",
"allowJs": true,
"noEmit": false,
"esModuleInterop": true,
"baseUrl": "./src",
"paths": {
"@/*": ["./*"]
},
},
"include": [
"./src/**/*"
],
"exclude": [
"./node_modules",
"tests"
]
}