2023-09-05 01:27:33 +03:00
|
|
|
{
|
2024-08-08 15:12:05 +03:00
|
|
|
"extends": "./tsconfig.json",
|
2023-11-20 17:17:34 +03:00
|
|
|
"include": [
|
2024-11-21 13:52:20 +03:00
|
|
|
".storybook/**/*",
|
2023-11-20 17:17:34 +03:00
|
|
|
"env.d.ts",
|
2024-07-12 13:45:57 +03:00
|
|
|
"lib0-ext.d.ts",
|
2023-11-20 17:17:34 +03:00
|
|
|
"src/**/*.vue",
|
2024-08-08 15:12:05 +03:00
|
|
|
"src/**/*.ts",
|
2024-10-11 21:23:02 +03:00
|
|
|
"src/**/*.tsx",
|
2023-12-15 13:29:15 +03:00
|
|
|
"src/util/theme.json",
|
2024-10-11 21:23:02 +03:00
|
|
|
"src/**/__tests__/*.json",
|
|
|
|
"templates/**/*"
|
2023-11-20 17:17:34 +03:00
|
|
|
],
|
2024-08-08 15:12:05 +03:00
|
|
|
"exclude": ["src/**/__tests__/*", "public/**/__tests__/*"],
|
2023-09-05 01:27:33 +03:00
|
|
|
"compilerOptions": {
|
2023-12-15 13:29:15 +03:00
|
|
|
"noEmit": true,
|
2023-09-26 11:14:56 +03:00
|
|
|
"allowImportingTsExtensions": true,
|
2023-09-22 06:43:25 +03:00
|
|
|
"types": ["vitest/importMeta"],
|
2024-10-11 21:23:02 +03:00
|
|
|
"paths": { "@/*": ["./src/project-view/*"], "#/*": ["./src/dashboard/*"] }
|
2023-09-22 06:43:25 +03:00
|
|
|
},
|
2024-10-11 21:23:02 +03:00
|
|
|
"references": [{ "path": "../ydoc-shared" }]
|
2023-09-05 01:27:33 +03:00
|
|
|
}
|