photosite/tsconfig.json

20 lines
461 B
JSON
Raw Normal View History

2024-01-06 05:25:07 +00:00
{
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true,
"target": "ES2020",
"noImplicitAny": true,
"moduleResolution": "node",
"sourceMap": true,
"removeComments" : false,
"baseUrl" : "dist",
"outDir": "./dist/",
"rootDir" : "./src/",
2024-12-11 07:03:46 +00:00
"skipLibCheck": true,
2024-01-06 05:25:07 +00:00
"paths" : {
}
},
"exclude" : [
"./dist"
]
}