enso/app/ydoc-server/tsconfig.json

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

14 lines
310 B
JSON
Raw Normal View History

{
"extends": "../tsconfig.json",
"include": ["src/**/*.ts"],
"references": [{ "path": "../ydoc-shared" }],
"compilerOptions": {
"composite": true,
"noEmit": false,
"rootDir": "src",
"outDir": "dist",
"types": ["node", "vitest/importMeta"],
"paths": { "#/*": ["./src/*"] }
}
}