livedj-app/tsconfig.json
2023-08-03 19:20:27 +02:00

30 lines
626 B
JSON

{
"compilerOptions": {
"pretty": true,
"noImplicitAny": false,
"sourceMap": true,
"outDir": "dist",
"target": "ES6",
"module": "CommonJS",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": true,
"suppressImplicitAnyIndexErrors": false,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": false,
"esModuleInterop": true,
"strict": false,
"typeRoots": [
"node_modules/@types"
]
},
"include": [
"./src/"
],
"exclude": [
"node_modules"
]
}