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.

tsconfig-types.json 476B

123456789101112131415161718
  1. {
  2. "include": ["src/packages/excalidraw", "src/global.d.ts", "src/css.d.ts"],
  3. "compilerOptions": {
  4. "allowJs": true,
  5. "declaration": true,
  6. "emitDeclarationOnly": true,
  7. "outDir": "src/packages/excalidraw/types",
  8. "jsx": "react-jsx",
  9. "target": "es6",
  10. "lib": ["esnext"],
  11. "module": "esnext",
  12. "moduleResolution": "node",
  13. "resolveJsonModule": true,
  14. "skipLibCheck": true,
  15. "allowSyntheticDefaultImports": true,
  16. "strict": true
  17. }
  18. }