konva/test/tsconfig.json
2025-04-03 17:21:13 -05:00

26 lines
672 B
JSON

{
"compilerOptions": {
"target": "ES2015",
"noEmitOnError": false,
"moduleResolution": "node",
"lib": ["ES2015", "dom"],
"module": "CommonJS",
"skipLibCheck": true,
"noImplicitAny": false,
"allowJs": true,
"noEmit": false,
"checkJs": false,
"allowUnreachableCode": true,
"allowUnusedLabels": true,
"noFallthroughCasesInSwitch": false,
"noImplicitReturns": false,
"noImplicitThis": false,
"noPropertyAccessFromIndexSignature": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"strict": false
},
"include": ["../src/**/*.ts", "./**/*.ts"],
"exclude": ["../node_modules/**/*"]
}