2022-01-24 12:49:27 +05:30
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"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,
|
|
|
|
"sourceMap": true,
|
|
|
|
"baseUrl": ".",
|
2022-03-08 12:16:18 +05:30
|
|
|
"types": ["webpack-env"],
|
2022-01-24 12:49:27 +05:30
|
|
|
"paths": {
|
2022-03-08 12:16:18 +05:30
|
|
|
"@/*": ["src/*"]
|
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
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*.ts",
|
|
|
|
"src/**/*.tsx",
|
|
|
|
"src/**/*.vue",
|
2022-01-24 13:01:05 +05:30
|
|
|
|
2022-01-24 12:49:27 +05:30
|
|
|
"tests/**/*.ts",
|
2022-01-24 13:01:05 +05:30
|
|
|
"tests/**/*.tsx",
|
|
|
|
|
|
|
|
"frappe/**/*.ts",
|
|
|
|
"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-03-08 12:16:18 +05:30
|
|
|
"accounting/**/*.ts"
|
2022-01-24 12:49:27 +05:30
|
|
|
],
|
2022-03-08 12:16:18 +05:30
|
|
|
"exclude": ["node_modules"]
|
2022-01-24 12:49:27 +05:30
|
|
|
}
|