blob: 7d5f31b7f88a700f669564fc5c45bf592c38035f (
plain) (
tree)
|
|
{
"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"
},
"include": ["./ts/**/*"]
}
|