mirror of
https://github.com/portainer/portainer.git
synced 2026-06-23 02:10:11 +00:00
38 lines
1.2 KiB
JSON
38 lines
1.2 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/*"],
|
|
"@api/*": ["./app/react/portainer/generated-api/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", "app/react/portainer/generated-api"],
|
|
"include": ["app", ".storybook"]
|
|
}
|