mirror of
https://github.com/usatiuk/photos.git
synced 2025-10-28 15:27:49 +01:00
30 lines
645 B
JSON
30 lines
645 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"es2017"
|
|
],
|
|
"target": "es2017",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"outDir": "./dist",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"sourceMap": true,
|
|
"noImplicitAny": true,
|
|
"strictFunctionTypes": true,
|
|
"strictNullChecks": true,
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"~*": [
|
|
"./*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./tests/**/*.ts",
|
|
],
|
|
"exclude": [
|
|
"frontend"
|
|
]
|
|
} |