tsconfig.json 297 B

12345678910111213141516
  1. {
  2. "compilerOptions": {
  3. "target": "ES5",
  4. "strict": true,
  5. "allowJs": true,
  6. "esModuleInterop": true,
  7. "baseUrl": ".",
  8. "paths": {
  9. "types": ["@types"]
  10. },
  11. "declaration": true,
  12. "declarationDir": "../webview-dist",
  13. "rootDir": "./"
  14. },
  15. "include": ["./"]
  16. }