3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-04 16:44:07 +00:00
z3/genaisrc/tsconfig.json
Nikolaj Bjorner 01fbc0e8e7 fix #7563
2025-02-19 14:55:27 -08:00

22 lines
472 B
JSON

{
"compilerOptions": {
"lib": [
"ES2022"
],
"target": "ES2023",
"module": "NodeNext",
"moduleDetection": "force",
"moduleResolution": "nodenext",
"checkJs": true,
"allowJs": true,
"skipLibCheck": true,
"noEmit": true,
"allowImportingTsExtensions": true
},
"include": [
"*.mjs",
"*.mts",
"src/*.mts",
"./genaiscript.d.ts"
]
}