2021-11-03 12:41:59 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": "app",
|
|
|
|
"outDir": "./dist/public",
|
|
|
|
"module": "es6",
|
|
|
|
// "module": "commonjs",
|
|
|
|
// "module": "esnext",
|
2022-10-20 17:23:56 +03:00
|
|
|
"incremental": true,
|
2024-06-27 13:54:10 +12:00
|
|
|
"target": "ES2018",
|
2021-11-03 12:41:59 +02:00
|
|
|
"allowJs": true,
|
|
|
|
"checkJs": false,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": false,
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"removeComments": true,
|
2022-03-13 09:14:41 +02:00
|
|
|
"resolveJsonModule": true,
|
2021-11-03 12:41:59 +02:00
|
|
|
// "sourceMap": true,
|
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"paths": {
|
|
|
|
// paths relative to the baseUrl
|
2022-06-17 19:18:42 +03:00
|
|
|
"@@/*": ["react/components/*"],
|
2022-09-23 15:55:05 +12:00
|
|
|
"@/*": ["./*", "../app/*"],
|
|
|
|
"Agent/*": ["agent/*"],
|
|
|
|
"Azure/*": ["azure/*"],
|
|
|
|
"Docker/*": ["docker/*"],
|
|
|
|
"Kubernetes/*": ["kubernetes/*"],
|
2025-03-27 17:11:55 +13:00
|
|
|
"Portainer/*": ["portainer/*"],
|
|
|
|
// https://github.com/jsonnext/codemirror-json-schema/issues/107#issuecomment-2144584296
|
|
|
|
"yaml-schema": ["../node_modules/codemirror-json-schema/dist/yaml"]
|
2024-01-23 08:42:52 +02:00
|
|
|
},
|
|
|
|
"types": ["vitest/globals"]
|
2021-11-03 12:41:59 +02:00
|
|
|
},
|
|
|
|
"exclude": ["api", "build", "dist", "distribution", "node_modules", "test", "webpack"],
|
2024-01-24 10:06:38 +02:00
|
|
|
"include": ["app", ".storybook"]
|
2021-11-03 12:41:59 +02:00
|
|
|
}
|