enso/app/gui2/tsconfig.app.json
Paweł Grabarz b286adaae4
Split ydoc server into separate module (#10735)
# Important Notes
The command to run the gui dev environment has been changed. Invoking the old command will print a message about that.
From now on, use `pnpm dev:gui2` in repository root.
2024-08-08 12:12:05 +00:00

26 lines
609 B
JSON

{
"extends": "./tsconfig.json",
"include": [
"env.d.ts",
"lib0-ext.d.ts",
"src/**/*",
"src/**/*.vue",
"src/**/*.ts",
"src/util/theme.json",
"mock/**/*",
"mock/**/*.vue",
"stories/**/*",
"stories/**/*.json",
"stories/**/*.vue",
"src/**/__tests__/*.json"
],
"exclude": ["src/**/__tests__/*", "public/**/__tests__/*"],
"compilerOptions": {
"noEmit": true,
"allowImportingTsExtensions": true,
"types": ["vitest/importMeta"],
"paths": { "@/*": ["./src/*"] }
},
"references": [{ "path": "../dashboard" }, { "path": "../ydoc-shared" }]
}