Files
konva/tsconfig.json

32 lines
1.1 KiB
JSON
Raw Normal View History

2019-01-01 15:59:27 -05:00
{
"compilerOptions": {
"outDir": "lib",
2023-08-28 09:23:57 -05:00
"target": "ES2018",
"lib": ["ES2019", "dom"],
"module": "nodenext",
"noUncheckedSideEffectImports": true,
"rewriteRelativeImportExtensions": true,
"isolatedModules": true,
"erasableSyntaxOnly": true,
"verbatimModuleSyntax": true,
2022-01-04 12:11:15 -05:00
// "sourceMap": true,
"noEmitOnError": true,
2021-05-05 09:19:24 -05:00
"declaration": true,
2023-08-26 20:36:40 -05:00
"removeComments": false,
2023-09-09 16:39:57 -05:00
"strict": true,
"noImplicitAny": false,
"noImplicitThis": false,
"useUnknownInCatchVariables": false,
2024-05-15 13:45:07 -05:00
"skipLibCheck": true,
2023-09-09 16:39:57 -05:00
// probably we would never enable this one
// because it's too strict, konva generates many functions on the runtime
"strictPropertyInitialization": false,
// our initializer `field: GetSet<string, this>` will cause `field` to
// be set to undefined if target>=ES2022, this also affects tools like `tsx` running locally
// https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-7.html#the-usedefineforclassfields-flag-and-the-declare-property-modifier
"useDefineForClassFields": false
2019-01-01 15:59:27 -05:00
},
"include": ["src"]
2019-01-01 15:59:27 -05:00
}