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