mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-12-23 10:11:54 +00:00
* Upgrade node dependencies except Svelte 5 and its peer deps * Fix lint errors * Fix previous Rust deps upgrade breakage * Fix demo artwork * Allow profiling CI workflow to fail
30 lines
787 B
JSON
30 lines
787 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"importHelpers": true,
|
|
"experimentalDecorators": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"verbatimModuleSyntax": true,
|
|
"sourceMap": true,
|
|
"types": ["node", "svelte", "svelte/store", "svelte/motion", "svelte/transition", "svelte/animate", "svelte/easing"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"/*": ["./*"],
|
|
"@graphite-frontend/*": ["./*"],
|
|
"@graphite/*": ["src/*"]
|
|
},
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable", "ScriptHost"]
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.svelte", "*.ts"],
|
|
"ts-node": {
|
|
"compilerOptions": {
|
|
"useDefineForClassFields": false,
|
|
"noImplicitOverride": true
|
|
}
|
|
}
|
|
}
|