enso/app/gui/tsconfig.app.json

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

23 lines
566 B
JSON
Raw Normal View History

{
"extends": "./tsconfig.json",
"include": [
2024-11-21 13:52:20 +03:00
".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" }]
}