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

55 lines
1.2 KiB
JSON
Raw Normal View History

2022-01-24 12:49:27 +05:30
{
"compilerOptions": {
"target": "es2018",
2022-01-24 12:49:27 +05:30
"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,
2022-03-25 15:42:39 +05:30
"resolveJsonModule": true,
2022-01-24 12:49:27 +05:30
"sourceMap": true,
"types": ["webpack-env"],
"baseUrl": ".",
2022-01-24 12:49:27 +05:30
"paths": {
2022-04-20 12:08:47 +05:30
"src/*": ["src/*"],
2022-03-28 15:31:29 +05:30
"schemas/*": ["schemas/*"],
"main/*": ["main/*"],
2022-03-28 15:31:29 +05:30
"backend/*": ["backend/*"],
"regional/*": ["regional/*"],
2022-04-20 12:08:47 +05:30
"fixtures/*": ["fixtures/*"],
"reports/*": ["reports/*"],
"models/*": ["models/*"],
2022-05-10 14:56:17 +05:30
"utils/*": ["utils/*"],
"dummy/*": ["dummy/*"]
2022-01-24 12:49:27 +05:30
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
2022-01-24 12:49:27 +05:30
},
"ts-node": {
"files": true
},
2022-01-24 12:49:27 +05:30
"include": [
"src/**/*.ts",
"src/**/*.vue",
2022-03-25 15:42:39 +05:30
"schemas/**/*.ts",
"backend/**/*.ts",
"fyo/**/*.ts",
"models/**/*.ts",
"patches/**/*.ts",
"patches/**/*.js",
"reports/**/*.ts",
"accounting/**/*.ts",
"scripts/**/*.ts",
"main/**/*.ts",
"regional/**/*.ts",
"reports/**/*.ts",
"utils/**/*.ts",
2022-05-10 14:56:17 +05:30
"tests/**/*.ts",
"dummy/**/*.ts"
2022-04-20 12:08:47 +05:30
],
"exclude": ["node_modules"]
2022-01-24 12:49:27 +05:30
}