2019-01-01 15:59:27 -05:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"outDir": "lib",
|
2023-08-28 09:23:57 -05:00
|
|
|
"target": "ES2018",
|
2025-08-20 09:39:20 +12:00
|
|
|
"lib": ["ES2019", "dom"],
|
|
|
|
|
"module": "nodenext",
|
|
|
|
|
"noUncheckedSideEffectImports": true,
|
|
|
|
|
"rewriteRelativeImportExtensions": true,
|
|
|
|
|
"isolatedModules": true,
|
2025-08-20 11:16:11 +12:00
|
|
|
"erasableSyntaxOnly": true,
|
2025-08-20 11:27:20 +12:00
|
|
|
"verbatimModuleSyntax": true,
|
2022-01-04 12:11:15 -05:00
|
|
|
// "sourceMap": true,
|
2019-02-18 12:18:16 -05:00
|
|
|
"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
|
2025-08-20 09:39:20 +12:00
|
|
|
"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
|
|
|
},
|
2025-08-20 09:39:20 +12:00
|
|
|
"include": ["src"]
|
2019-01-01 15:59:27 -05:00
|
|
|
}
|