2023-07-24 20:27:36 +00:00
|
|
|
{
|
|
|
|
"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,
|
2023-07-24 20:27:36 +00:00
|
|
|
"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"]
|
2023-07-24 20:27:36 +00:00
|
|
|
}
|