Files
frida-example/tsconfig.json
2025-06-19 14:17:26 +08:00

15 lines
323 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022"],
"module": "Node16",
"strict": true,
"noEmit": true
},
"include": ["src/**/*"] /* Include all files in the 'src' directory */,
"exclude": [
"node_modules",
"dist"
] /* Exclude the 'node_modules' and 'dist' directories */
}