chatbridge/tsconfig.json

19 lines
432 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/**/*"],
"exclude": ["node_modules", "roles"]
}