2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 03:29:00 +00:00
books/tsconfig.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
1.2 KiB
JSON
Raw Normal View History

2022-01-24 07:19:27 +00:00
{
"compilerOptions": {
"target": "es2020",
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,
"types": ["webpack-env"],
"baseUrl": ".",
2022-01-24 07:19:27 +00:00
"paths": {
2022-04-20 06:38:47 +00:00
"src/*": ["src/*"],
2022-03-28 10:01:29 +00:00
"schemas/*": ["schemas/*"],
"main/*": ["main/*"],
2022-03-28 10:01:29 +00:00
"backend/*": ["backend/*"],
"regional/*": ["regional/*"],
2022-04-20 06:38:47 +00:00
"fixtures/*": ["fixtures/*"],
"reports/*": ["reports/*"],
"models/*": ["models/*"],
2022-05-10 09:26:17 +00:00
"utils/*": ["utils/*"],
"dummy/*": ["dummy/*"]
2022-01-24 07:19:27 +00:00
},
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
2022-01-24 07:19:27 +00:00
},
"ts-node": {
"files": true
},
2022-01-24 07:19:27 +00:00
"include": [
"src/**/*.ts",
"src/**/*.vue",
2022-03-25 10:12:39 +00:00
"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",
2022-05-10 09:26:17 +00:00
"tests/**/*.ts",
"dummy/**/*.ts"
2022-04-20 06:38:47 +00:00
],
"exclude": ["node_modules"]
2022-01-24 07:19:27 +00:00
}