seedling/source/shared/tsconfig.json

28 lines
483 B
JSON
Raw Normal View History

{
"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"
]
}