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