-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
34 lines (34 loc) · 879 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"compilerOptions": {
"target": "ES6",
"lib": ["DOM", "DOM.Iterable", "ES6"],
"skipLibCheck": false,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"module": "ES6",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react",
"allowJs": true,
"strictNullChecks": true,
"baseUrl": "./public/",
"outDir": "src/dist",
"paths": {
"@grafana/slate-react": ["../node_modules/@types/slate-react"],
"app": ["app/"],
"sass": ["sass/"]
},
"types": ["vite/client"],
"typeRoots": ["./node_modules/@types"],
},
"include": [
"public/app/**/*.ts*",
"public/e2e-test/**/*.ts",
"public/test/**/*.ts",
"public/vendor/**/*.ts",
"packages/jaeger-ui-components/typings",
"packages/grafana-data/typings"
]
}