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

39 lines
795 B
JSON
Raw Normal View History

2022-01-24 07:19:27 +00:00
{
"compilerOptions": {
"target": "es2018",
2022-01-24 07:19:27 +00:00
"module": "esnext",
"strict": true,
2022-01-24 09:06:09 +00:00
"allowJs": true,
2022-01-24 07:19:27 +00:00
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"baseUrl": ".",
"types": ["webpack-env"],
2022-01-24 07:19:27 +00:00
"paths": {
"@/*": ["src/*"]
2022-01-24 07:19:27 +00:00
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
2022-01-24 07:19:27 +00:00
},
"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",
"patches/**/*.js",
"reports/**/*.ts",
"accounting/**/*.ts",
"accounting/**/*.ts"
2022-01-24 07:19:27 +00:00
],
"exclude": ["node_modules"]
2022-01-24 07:19:27 +00:00
}