2022-01-24 07:19:27 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-06-21 08:05:42 +00:00
|
|
|
"target": "es2020",
|
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,
|
2022-03-25 10:12:39 +00:00
|
|
|
"resolveJsonModule": true,
|
2022-01-24 07:19:27 +00:00
|
|
|
"sourceMap": true,
|
2022-03-08 06:46:18 +00:00
|
|
|
"types": ["webpack-env"],
|
2022-04-21 13:08:36 +00:00
|
|
|
"baseUrl": ".",
|
2022-01-24 07:19:27 +00:00
|
|
|
"paths": {
|
2022-04-20 06:38:47 +00:00
|
|
|
"src/*": ["src/*"],
|
2022-03-28 10:01:29 +00:00
|
|
|
"schemas/*": ["schemas/*"],
|
2022-04-21 13:08:36 +00:00
|
|
|
"main/*": ["main/*"],
|
2022-03-28 10:01:29 +00:00
|
|
|
"backend/*": ["backend/*"],
|
2022-04-11 12:44:36 +00:00
|
|
|
"regional/*": ["regional/*"],
|
2022-04-20 06:38:47 +00:00
|
|
|
"fixtures/*": ["fixtures/*"],
|
2022-04-21 13:08:36 +00:00
|
|
|
"reports/*": ["reports/*"],
|
|
|
|
"models/*": ["models/*"],
|
2022-05-10 09:26:17 +00:00
|
|
|
"utils/*": ["utils/*"],
|
|
|
|
"dummy/*": ["dummy/*"]
|
2022-01-24 07:19:27 +00:00
|
|
|
},
|
2022-03-08 06:46:18 +00:00
|
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
|
2022-01-24 07:19:27 +00:00
|
|
|
},
|
2022-04-17 05:49:18 +00:00
|
|
|
"ts-node": {
|
|
|
|
"files": true
|
|
|
|
},
|
2022-01-24 07:19:27 +00:00
|
|
|
"include": [
|
|
|
|
"src/**/*.ts",
|
|
|
|
"src/**/*.vue",
|
2022-03-25 10:12:39 +00:00
|
|
|
"schemas/**/*.ts",
|
|
|
|
"backend/**/*.ts",
|
2022-04-19 05:59:36 +00:00
|
|
|
"fyo/**/*.ts",
|
2022-01-24 07:31:05 +00:00
|
|
|
"models/**/*.ts",
|
|
|
|
"patches/**/*.ts",
|
2022-03-08 06:46:18 +00:00
|
|
|
"patches/**/*.js",
|
2022-01-24 07:31:05 +00:00
|
|
|
"reports/**/*.ts",
|
|
|
|
"accounting/**/*.ts",
|
2022-04-17 05:49:18 +00:00
|
|
|
"scripts/**/*.ts",
|
2022-04-21 13:08:36 +00:00
|
|
|
"main/**/*.ts",
|
|
|
|
"regional/**/*.ts",
|
|
|
|
"reports/**/*.ts",
|
|
|
|
"utils/**/*.ts",
|
2022-05-10 09:26:17 +00:00
|
|
|
"tests/**/*.ts",
|
|
|
|
"dummy/**/*.ts"
|
2022-04-20 06:38:47 +00:00
|
|
|
],
|
2022-03-08 06:46:18 +00:00
|
|
|
"exclude": ["node_modules"]
|
2022-01-24 07:19:27 +00:00
|
|
|
}
|