mirror of
https://github.com/enso-org/enso.git
synced 2024-11-24 00:27:16 +03:00
b286adaae4
# 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.
26 lines
609 B
JSON
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" }]
|
|
}
|