Skip to content
Snippets Groups Projects
tsconfig.json 296 B
Newer Older
  • Learn to ignore specific revisions
  • {
      "extends": "../tsconfig.app.json",
      "compilerOptions": {
        "types": ["node"],
        "allowSyntheticDefaultImports": true,
        "resolveJsonModule": true
      },
      "exclude": ["../src/test.ts", "../src/**/*.spec.ts"],
      "include": ["../src/**/*", "./preview.ts"],
      "files": ["./typings.d.ts"]
    }