chatbridge/server/tsconfig.json

20 lines
440 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "es2016",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"module": "commonjs",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"strictPropertyInitialization": false,
"skipLibCheck": true,
"outDir": "./build",
"rootDir": ".",
2023-07-25 01:40:22 +00:00
},
"include": ["server/**/*"],
2023-07-25 23:00:45 +00:00
"exclude": [
"../node_modules", "roles"]
}