Files
xyflow/tsconfig.json
2021-10-21 14:05:34 +03:00

37 lines
766 B
JSON

{
"compilerOptions": {
"outDir": "dist",
"module": "esnext",
"target": "esnext",
"lib": [
"dom",
"esnext"
],
"jsx": "react",
"moduleResolution": "node",
"declaration": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": false,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true
},
"include": [
"src"
],
"exclude": [
"node_modules",
"build",
"dist",
"example",
"rollup.config.js"
]
}