threepipe
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "compilerOptions": {
  3. "allowJs": true,
  4. "allowSyntheticDefaultImports": true,
  5. "experimentalDecorators": true,
  6. "isolatedModules": true,
  7. "module": "es2020",
  8. "noImplicitAny": true,
  9. "declaration": true,
  10. "declarationMap": true,
  11. "declarationDir": "dist",
  12. "skipLibCheck": true,
  13. "noImplicitThis": true,
  14. "noUnusedLocals": true,
  15. "noUnusedParameters": true,
  16. "removeComments": false,
  17. "preserveConstEnums": true,
  18. "moduleResolution": "node",
  19. "emitDecoratorMetadata": false,
  20. "sourceMap": true,
  21. "target": "ES2020",
  22. "strictNullChecks": true,
  23. "paths": {
  24. },
  25. "lib": [
  26. "es2020",
  27. "esnext",
  28. "dom"
  29. ],
  30. "plugins": [{ "name": "typescript-plugin-css-modules" }]
  31. },
  32. "include": [
  33. "./src/**/*",
  34. "node_modules/@types/wicg-file-system-access/index.d.ts"
  35. ],
  36. "exclude": [
  37. "node_modules",
  38. "dist",
  39. "examples",
  40. "**/*.spec.ts"
  41. ]
  42. }