mirror of
https://github.com/enso-org/enso.git
synced 2024-11-29 14:02:10 +03:00
23 lines
566 B
JSON
23 lines
566 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"include": [
|
|
".storybook/**/*",
|
|
"env.d.ts",
|
|
"lib0-ext.d.ts",
|
|
"src/**/*.vue",
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"src/util/theme.json",
|
|
"src/**/__tests__/*.json",
|
|
"templates/**/*"
|
|
],
|
|
"exclude": ["src/**/__tests__/*", "public/**/__tests__/*"],
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
"types": ["vitest/importMeta"],
|
|
"paths": { "@/*": ["./src/project-view/*"], "#/*": ["./src/dashboard/*"] }
|
|
},
|
|
"references": [{ "path": "../ydoc-shared" }]
|
|
}
|