seedling/source/shared/.tsconfig.json
Roman Jaroš 1ea390869d Add next missing files
Change-Id: Id64f926d9e8808e23c1301366a7e814a1a071668
2023-09-09 21:12:02 +02:00

28 lines
No EOL
483 B
JSON

{
"compilerOptions": {
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"sourceMap": true,
"esModuleInterop": true,
"allowJs": true,
"outDir": "build",
"module": "commonjs",
"target": "es6",
"lib": [
"es6",
"dom"
],
"jsx": "react",
"types": [
"jest",
],
},
"exclude": [
"./node_modules",
"./src/**/__tests__/*.tsx"
]
}