mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
24 lines
507 B
JSON
24 lines
507 B
JSON
{
|
|
// extend your base config to share compilerOptions, etc
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
// ensure that nobody can accidentally use this config for a build
|
|
"noEmit": true,
|
|
"allowJs": true
|
|
},
|
|
"include": [
|
|
"./.build/*.ts",
|
|
"./.esbuild/*.ts",
|
|
"./.vite/*.ts",
|
|
"./cypress.config.ts",
|
|
"./tests",
|
|
"./scripts",
|
|
"./cypress",
|
|
"./__mocks__",
|
|
"./demos/dev",
|
|
"./vite.config.ts",
|
|
"./vitest.workspace.js",
|
|
"eslint.config.js"
|
|
]
|
|
}
|