22 lines
613 B
JSON
22 lines
613 B
JSON
{
|
|
"compilerOptions": {
|
|
"checkJs": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
// TODO: should probably be fixed to ES2023, or whatever standard is
|
|
// currently supported by the latest GJS
|
|
"target": "ESNext",
|
|
"outDir": "compiled_javascript",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"*": ["*", "/app/share/re.sonny.Workbench/langs/typescript/gi-types/*"]
|
|
},
|
|
"skipLibCheck": true
|
|
},
|
|
"include": [
|
|
"main.js",
|
|
"/app/share/re.sonny.Workbench/langs/typescript/types/ambient.d.ts",
|
|
"/app/share/re.sonny.Workbench/langs/typescript/gi-types/gi.d.ts"
|
|
]
|
|
}
|