Skip to content
Snippets Groups Projects
tsconfig.json 411 B
Newer Older
  • Learn to ignore specific revisions
  • {
      "compilerOptions": {
        "outDir": "./build/",
        "noImplicitAny": true,
    
        "strictNullChecks": false,
    
        "lib": [
          "es2019",
          "DOM"
        ],
    
        "jsx": "preserve",
        "allowJs": true,
        "moduleResolution": "node",
        "allowSyntheticDefaultImports": true,
        "sourceMap": true
    
      },
      "exclude": ["node_modules"],
      "include": ["src", "index.d.ts"]