Skip to content
Snippets Groups Projects
tsconfig.json 296 B
Newer Older
  • Learn to ignore specific revisions
  • {
      "compilerOptions": {
        "outDir": "./build/",
        "noImplicitAny": true,
    
        "strictNullChecks": false,
    
        "jsx": "preserve",
        "allowJs": true,
        "moduleResolution": "node",
        "allowSyntheticDefaultImports": true,
        "sourceMap": true
      }
    }