mirror of
https://github.com/frappe/books.git
synced 2024-11-08 14:50:56 +00:00
55 lines
1.2 KiB
JSON
55 lines
1.2 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,
|
|
"types": ["webpack-env"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"src/*": ["src/*"],
|
|
"schemas/*": ["schemas/*"],
|
|
"main/*": ["main/*"],
|
|
"backend/*": ["backend/*"],
|
|
"regional/*": ["regional/*"],
|
|
"fixtures/*": ["fixtures/*"],
|
|
"reports/*": ["reports/*"],
|
|
"models/*": ["models/*"],
|
|
"utils/*": ["utils/*"],
|
|
"dummy/*": ["dummy/*"]
|
|
},
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
|
|
},
|
|
"ts-node": {
|
|
"files": true
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.vue",
|
|
"schemas/**/*.ts",
|
|
"backend/**/*.ts",
|
|
"fyo/**/*.ts",
|
|
"models/**/*.ts",
|
|
"patches/**/*.ts",
|
|
"patches/**/*.js",
|
|
"reports/**/*.ts",
|
|
"accounting/**/*.ts",
|
|
"scripts/**/*.ts",
|
|
"main/**/*.ts",
|
|
"regional/**/*.ts",
|
|
"reports/**/*.ts",
|
|
"utils/**/*.ts",
|
|
"tests/**/*.ts",
|
|
"dummy/**/*.ts"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|