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.json 456B

123456789101112131415161718
  1. {
  2. "extends": "../../tsconfig.base.json",
  3. "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
  4. "exclude": ["node_modules", "**/*.test.ts", "**/*.spec.ts", "dist"],
  5. "compilerOptions": {
  6. "lib": ["dom", "dom.iterable", "esnext"],
  7. "rootDir": ".",
  8. "baseUrl": ".",
  9. "outDir": "./dist/types",
  10. "allowJs": true,
  11. "resolveJsonModule": true,
  12. "isolatedModules": true,
  13. "noEmit": true,
  14. "paths": {
  15. "-*": ["./*"]
  16. }
  17. }
  18. }