Skip to content

Instantly share code, notes, and snippets.

@idkiller
Created March 27, 2019 13:11
Show Gist options
  • Save idkiller/b6958fd6492cd5b763ddc0d1b934a9e9 to your computer and use it in GitHub Desktop.
Save idkiller/b6958fd6492cd5b763ddc0d1b934a9e9 to your computer and use it in GitHub Desktop.

Revisions

  1. idkiller created this gist Mar 27, 2019.
    41 changes: 41 additions & 0 deletions tsconfig.jaon
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,41 @@
    {
    "compilerOptions": {
    "target": "esnext",
    "module": "esnext",
    "strict": true,
    "jsx": "preserve",
    "importHelpers": true,
    "moduleResolution": "node",
    "experimentalDecorators": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "sourceMap": true,
    "baseUrl": ".",
    "types": [
    "webpack-env"
    ],
    "paths": {
    "@/*": [
    "src/*"
    ]
    },
    "lib": [
    "esnext",
    "dom",
    "dom.iterable",
    "scripthost"
    ]
    },
    "include": [
    "types/**/*.ts",
    "src/**/*.ts",
    "src/**/*.tsx",
    "src/**/*.vue",
    "tests/**/*.ts",
    "tests/**/*.tsx",
    "node_modules/vuetify/types"
    ],
    "exclude": [
    "node_modules/^(?!vuetify/types).*$"
    ]
    }