mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-10 01:41:59 +00:00
36 lines
710 B
JSON
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"
|
|
]
|
|
} |