chatbridge/server/tsconfig.json

21 lines
482 B
JSON
Raw Normal View History

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