mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-27 10:02:59 +08:00
31 lines
565 B
JSON
31 lines
565 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"target": "ES2020",
|
|
"outDir": "dist",
|
|
"strict": false,
|
|
"types": [
|
|
"node",
|
|
"express"
|
|
],
|
|
"rootDir": "src",
|
|
"tsBuildInfoFile": "dist/tsconfig.app.tsbuildinfo"
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"../server/src/*.d.ts"
|
|
],
|
|
"exclude": [
|
|
"eslint.config.js",
|
|
"eslint.config.cjs",
|
|
"eslint.config.mjs"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "../server/tsconfig.app.json"
|
|
}
|
|
]
|
|
}
|