2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 03:29:00 +00:00
books/tsconfig.json

48 lines
818 B
JSON
Raw Normal View History

2022-01-24 07:19:27 +00:00
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"types": [
"webpack-env"
],
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
2022-01-24 07:19:27 +00:00
"tests/**/*.ts",
"tests/**/*.tsx",
"frappe/**/*.ts",
"models/**/*.ts",
"patches/**/*.ts",
"reports/**/*.ts",
"accounting/**/*.ts",
"accounting/**/*.ts",
2022-01-24 07:19:27 +00:00
],
"exclude": [
"node_modules"
]
}