Notes/apps/edit-docs/tsconfig.app.json

37 lines
680 B
JSON
Raw Normal View History

2025-04-29 12:50:05 +03:00
{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
2025-05-25 11:47:03 +03:00
"module": "ESNext",
"moduleResolution": "bundler",
"target": "ES2020",
2025-04-29 12:50:05 +03:00
"outDir": "dist",
2025-05-25 11:47:03 +03:00
"strict": false,
2025-04-29 12:50:05 +03:00
"types": [
2025-05-25 11:47:03 +03:00
"node",
"express"
2025-04-29 12:50:05 +03:00
],
"rootDir": "src",
2025-05-25 11:47:03 +03:00
"tsBuildInfoFile": "dist/tsconfig.app.tsbuildinfo"
2025-04-29 12:50:05 +03:00
},
"include": [
2025-05-25 11:47:03 +03:00
"src/**/*.ts",
"../server/src/*.d.ts"
2025-04-29 12:50:05 +03:00
],
"exclude": [
"eslint.config.js",
"eslint.config.cjs",
"eslint.config.mjs"
],
"references": [
2025-05-24 20:46:32 +03:00
{
"path": "../server/tsconfig.app.json"
},
2025-04-29 12:50:05 +03:00
{
"path": "../desktop/tsconfig.app.json"
},
{
"path": "../client/tsconfig.app.json"
}
]
}