aboutsummaryrefslogblamecommitdiffstats
path: root/packages/website/tsconfig.json
blob: 67573971f000847352b296d512dd8ec334c34e06 (plain) (tree)
1
2
3
4
5
6
7
8
9
 
                                


                                             


                        
                                  
                                


                                                                                
                             

                                
                  
                                               


                                  
      

                                       
                                 


                        


                            
 
{
    "extends": "../../tsconfig",
    "compilerOptions": {
        "allowSyntheticDefaultImports": true,
        "outDir": "./transpiled/",
        "jsx": "react",
        "baseUrl": "./",
        "allowJs": true,
        "strictNullChecks": false,
        "noImplicitThis": false,
        // tsconfig.json at the monorepo root contains some options required for
        // project references which do not work for website. We override those
        // options here.
        "declaration": false,
        "declarationMap": false,
        "composite": false,
        "paths": {
            "*": ["node_modules/@types/*", "*"]
        },
        "module": "esnext",
        "moduleResolution": "node"
    },
    "awesomeTypescriptLoaderOptions": {
        "useCache": true,
        "errorsAsWarnings": true,
        "reportFiles": [
            "./ts/**/*"
        ]

    },
    "include": ["./ts/**/*"]
}