tsconfig.json 253 B

12345678910111213
  1. {
  2. "compilerOptions": {
  3. "target": "ES2020",
  4. "moduleResolution": "node",
  5. "noUnusedParameters": true,
  6. "noUnusedLocals": true,
  7. "sourceMap": true,
  8. "outDir": "dist/js",
  9. "lib": ["ES2020", "dom"]
  10. },
  11. "include": ["src/*", "@types/PreMiD/*.ts"]
  12. }