Files
bknd/packages/plasmic/tsconfig.json
2024-11-16 12:01:47 +01:00

23 lines
641 B
JSON

{
"compilerOptions": {
"composite": true,
"lib": ["ESNext", "DOM"],
"target": "ESNext",
"module": "ESNext",
"jsx": "react-jsx",
"allowJs": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": false,
"verbatimModuleSyntax": true,
"strict": true,
"outDir": "dist",
"declaration": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noPropertyAccessFromIndexSignature": false
},
"include": ["index.ts", "loader.tsx", "components", "contexts"],
"exclude": ["@bknd/app", "@bknd/core", "dist", "node_modules", "build.ts"]
}