2022-01-24 12:49:27 +05:30
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-06-21 13:35:42 +05:30
|
|
|
"target": "es2020",
|
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,
|
2022-03-08 12:16:18 +05:30
|
|
|
"types": ["webpack-env"],
|
2022-04-21 18:38:36 +05:30
|
|
|
"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/*"],
|
2022-04-21 18:38:36 +05:30
|
|
|
"main/*": ["main/*"],
|
2022-03-28 15:31:29 +05:30
|
|
|
"backend/*": ["backend/*"],
|
2022-04-11 18:14:36 +05:30
|
|
|
"regional/*": ["regional/*"],
|
2022-04-20 12:08:47 +05:30
|
|
|
"fixtures/*": ["fixtures/*"],
|
2022-04-21 18:38:36 +05:30
|
|
|
"reports/*": ["reports/*"],
|
|
|
|
"models/*": ["models/*"],
|
2022-05-10 14:56:17 +05:30
|
|
|
"utils/*": ["utils/*"],
|
|
|
|
"dummy/*": ["dummy/*"]
|
2022-01-24 12:49:27 +05:30
|
|
|
},
|
2022-03-08 12:16:18 +05:30
|
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
|
2022-01-24 12:49:27 +05:30
|
|
|
},
|
2022-04-17 11:19:18 +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",
|
2022-04-19 11:29:36 +05:30
|
|
|
"fyo/**/*.ts",
|
2022-01-24 13:01:05 +05:30
|
|
|
"models/**/*.ts",
|
|
|
|
"patches/**/*.ts",
|
2022-03-08 12:16:18 +05:30
|
|
|
"patches/**/*.js",
|
2022-01-24 13:01:05 +05:30
|
|
|
"reports/**/*.ts",
|
|
|
|
"accounting/**/*.ts",
|
2022-04-17 11:19:18 +05:30
|
|
|
"scripts/**/*.ts",
|
2022-04-21 18:38:36 +05:30
|
|
|
"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
|
|
|
],
|
2022-03-08 12:16:18 +05:30
|
|
|
"exclude": ["node_modules"]
|
2022-01-24 12:49:27 +05:30
|
|
|
}
|