konva/test/tsconfig.json

26 lines
670 B
JSON
Raw Normal View History

{
"compilerOptions": {
2021-05-04 06:09:18 +08:00
"target": "ES2015",
2025-04-04 06:21:13 +08:00
"noEmitOnError": false,
2021-05-04 06:09:18 +08:00
"moduleResolution": "node",
2021-05-06 02:24:52 +08:00
"lib": ["ES2015", "dom"],
2025-08-10 21:10:55 +08:00
"module": "ESNext",
2025-04-04 06:21:13 +08:00
"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
},
2025-04-04 06:21:13 +08:00
"include": ["../src/**/*.ts", "./**/*.ts"],
"exclude": ["../node_modules/**/*"]
2021-05-04 06:09:18 +08:00
}