mirror of
https://github.com/frappe/books.git
synced 2024-11-08 14:50:56 +00:00
af0d897020
- shift csvParser to utils
50 lines
1.0 KiB
JSON
50 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2018",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"jsx": "preserve",
|
|
"importHelpers": true,
|
|
"moduleResolution": "node",
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"types": ["webpack-env"],
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"schemas/*": ["schemas/*"],
|
|
"backend/*": ["backend/*"],
|
|
"regional/*": ["regional/*"],
|
|
"utils/*": ["utils/*"]
|
|
},
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
|
|
},
|
|
"ts-node": {
|
|
"files": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.vue",
|
|
|
|
"schemas/**/*.ts",
|
|
"backend/**/*.ts",
|
|
|
|
"frappe/**/*.ts",
|
|
"models/**/*.ts",
|
|
"patches/**/*.ts",
|
|
"patches/**/*.js",
|
|
"reports/**/*.ts",
|
|
"accounting/**/*.ts",
|
|
"accounting/**/*.ts",
|
|
|
|
"scripts/**/*.ts",
|
|
"utils/csvParser.ts"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|