UNPKG

@lcap/nasl-parser

Version:

Take Nasl text to Nasl AST with the help of generalized parsing.

32 lines (31 loc) 730 B
{ "compilerOptions": { "target": "es2022", "module": "Node16", // "lib": ["ESNext", "DOM", "WebWorker"], "sourceMap": true, "outDir": "generated/", "strict": false, "strictNullChecks": false, // enable this rule: "noImplicitAny": false, "noUnusedLocals": false, "noUnusedParameters": false, "noImplicitOverride":false, "resolveJsonModule":true, "esModuleInterop": true, // "noImplicitReturns": true, // "noImplicitOverride": true, // "moduleResolution": "Node16", "skipLibCheck": true, // "forceConsistentCasingInFileNames": true, }, "include": [ "ts/**/*.ts", // "tests/**/*.ts" ], "exclude": [ "out", "node_modules" ] }