-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (24 loc) · 844 Bytes
/
tsconfig.json
File metadata and controls
24 lines (24 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@powsybl/network-viewer-core": ["packages/network-viewer-core/src/"],
"@powsybl/network-map-layers": ["packages/network-map-layers/src/"],
"vite-plugin-checker": ["node_modules/vite-plugin-checker/dist/main.d.ts"]
},
"outDir": "./dist",
"jsx": "react-jsx"
},
"include": [
"src",
"demo", // we can let demo because the file generation is managed by vite and we have noEmit anyway
"utils",
"setupTests.ts",
// We must list config files in typescript because needed by prettier when called by eslint as plugin
"eslint.config.js",
"prettier.config.js",
"vitest.config.ts",
"vite.config.ts"
]
}