Files
portainer/tsconfig.json
2026-04-15 03:55:42 +03:00

42 lines
1.3 KiB
JSON

{
"compilerOptions": {
"outDir": "./dist/public",
"module": "es6",
"incremental": true,
"target": "esnext",
"allowJs": true,
"checkJs": false,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "bundler",
"isolatedModules": true,
"noEmit": false,
"jsx": "react-jsx",
"noImplicitReturns": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"removeComments": true,
"resolveJsonModule": true,
"lib": ["dom", "dom.iterable", "esnext"],
"paths": {
"@@/*": ["./app/react/components/*"],
"@/*": ["./app/*"],
"Agent/*": ["./app/agent/*"],
"Azure/*": ["./app/azure/*"],
"Docker/*": ["./app/docker/*"],
"Kubernetes/*": ["./app/kubernetes/*"],
"Portainer/*": ["./app/portainer/*"],
"yaml-schema": ["./node_modules/codemirror-json-schema/dist/yaml"]
},
"types": ["vitest/globals", "@testing-library/jest-dom", "node"]
},
"exclude": ["api", "build", "dist", "distribution", "node_modules", "test", "webpack"],
"include": ["app", ".storybook"]
}