filmout_manager/tsconfig.json

20 lines
485 B
JSON
Executable File

{
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true,
"target": "ES2020",
"noImplicitAny": true,
"moduleResolution": "node",
"sourceMap": true,
"removeComments" : false,
"baseUrl" : "dist",
"outDir": "./dist/",
"rootDir" : "./src/",
"declaration": true,
"paths" : {
}
},
"exclude" : [
"./dist", "./browser", "./static"
]
}