platform-codebase/@packages/@plugins/tsconfig.json

23 lines
563 B
JSON
Raw Normal View History

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"outDir": "./dist",
"composite": false,
"moduleResolution": "bundler",
"module": "ESNext",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"jsx": "react-jsx",
"esModuleInterop": true,
"skipLibCheck": true,
"noUnusedLocals": false,
"noUnusedParameters": false
},
"include": [
"src/**/*",
"src/types/**/*.d.ts",
"../../features/payments/frontend/**/*",
"../../features/payments/frontend/styled.d.ts"
],
"exclude": ["node_modules", "dist"]
}