mirror of
https://github.com/konvajs/konva.git
synced 2025-06-28 02:27:53 +08:00
26 lines
672 B
JSON
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/**/*"]
|
|
}
|