mirror of
https://github.com/usatiuk/photos.git
synced 2025-10-28 07:27:47 +01:00
22 lines
637 B
JSON
22 lines
637 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["es2017", "dom"],
|
|
"jsx": "react",
|
|
"target": "es5",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"outDir": "./dist",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"sourceMap": true,
|
|
"noImplicitAny": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"skipLibCheck": true,
|
|
"isolatedModules": true,
|
|
"downlevelIteration": true
|
|
},
|
|
"include": ["./src/**/*.ts", "./src/**/*.tsx", "./jest.config.js"]
|
|
}
|