2022-01-24 07:19:27 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-03-16 09:49:48 +00:00
|
|
|
"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,
|
2022-03-25 10:12:39 +00:00
|
|
|
"resolveJsonModule": true,
|
2022-01-24 07:19:27 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
"baseUrl": ".",
|
2022-03-08 06:46:18 +00:00
|
|
|
"types": ["webpack-env"],
|
2022-01-24 07:19:27 +00:00
|
|
|
"paths": {
|
2022-03-28 10:01:29 +00:00
|
|
|
"@/*": ["src/*"],
|
|
|
|
"schemas/*": ["schemas/*"],
|
|
|
|
"backend/*": ["backend/*"],
|
2022-04-11 12:44:36 +00:00
|
|
|
"regional/*": ["regional/*"],
|
2022-03-29 08:18:39 +00:00
|
|
|
"utils/*": ["utils/*"]
|
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/**/*.tsx",
|
|
|
|
"src/**/*.vue",
|
2022-01-24 07:31:05 +00:00
|
|
|
|
2022-03-25 10:12:39 +00:00
|
|
|
"schemas/**/*.ts",
|
|
|
|
"backend/**/*.ts",
|
2022-01-24 07:31:05 +00:00
|
|
|
|
|
|
|
"frappe/**/*.ts",
|
|
|
|
"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
|
|
|
"accounting/**/*.ts",
|
|
|
|
|
|
|
|
"scripts/**/*.ts",
|
|
|
|
"utils/csvParser.ts"
|
2022-04-18 11:29:20 +00:00
|
|
|
, "utils/config.ts" ],
|
2022-03-08 06:46:18 +00:00
|
|
|
"exclude": ["node_modules"]
|
2022-01-24 07:19:27 +00:00
|
|
|
}
|