mirror of
https://github.com/zoriya/ags.git
synced 2025-12-06 00:06:10 +00:00
* rework widget subclassing #121 * remove Utils.connect, add Widget.bind, Widget.connectTo * add: types for on_event fields * bump version to 1.5.1 * export service classes and named instance constants * add starter config example
26 lines
533 B
JSON
26 lines
533 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"lib": [
|
|
"ES2022"
|
|
],
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
"outDir": "_build/tsc-out",
|
|
"strict": true,
|
|
"moduleResolution": "node",
|
|
"baseUrl": ".",
|
|
"typeRoots": [
|
|
"./node_modules/@girs"
|
|
],
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": [
|
|
"@girs",
|
|
"types/*",
|
|
"src"
|
|
]
|
|
}
|