2
0
mirror of https://github.com/frappe/books.git synced 2025-01-24 15:48:25 +00:00
books/tsconfig.json

39 lines
795 B
JSON
Raw Permalink Normal View History

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