2019-03-06 09:25:58 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-07-15 19:25:55 +02:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": { "*": ["types/*"] },
|
2019-07-15 13:45:52 +02:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"jsx": "preserve",
|
2019-03-06 09:25:58 +01:00
|
|
|
"noImplicitAny": true,
|
2019-05-22 21:43:04 +02:00
|
|
|
"experimentalDecorators": true,
|
2019-07-15 13:45:52 +02:00
|
|
|
"target": "esnext",
|
|
|
|
"strictNullChecks": true
|
2019-03-06 09:25:58 +01:00
|
|
|
},
|
2019-07-15 13:45:52 +02:00
|
|
|
"exclude": ["node_modules"],
|
|
|
|
"include": ["src"]
|
|
|
|
}
|