Gaëtan Maisse d4cb03cb2c
chore: clean usage of skipLibCheck and skipDefaultLibCheck TS option
`skipDefaultLibCheck` is deprecated so there is no need to add it
anymore.

I added `skipLibCheck` in the angular example because it looks like
there are some type incompatibility between some types coming from
node_modules we have in the monorepo. (Not really a surprise with the
number of deps we have)

Signed-off-by: Gaëtan Maisse <gaetanmaisse@gmail.com>
2021-02-13 18:01:24 +01:00

21 lines
429 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"incremental": false,
"noImplicitAny": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"jsx": "react",
"module": "commonjs",
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"target": "es5",
"types": ["jest", "node"],
"lib": ["es2017", "dom"]
},
"include": [
"src"
]
}