You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
typegoose__typegoose/tsconfig.json

33 lines
671 B

{
"compilerOptions": {
"target": "es2020",
"lib": [
"esnext"
],
"removeComments": false,
"module": "commonjs",
"moduleResolution": "node",
"newLine": "LF",
"declaration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"allowJs": false,
"outDir": "build",
"inlineSourceMap": true,
"importHelpers": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true
},
"include": [
"src/**/*.ts",
"test/**/*.ts",
"*.js",
".*.js",
"website/**/*.js"
],
"exclude": [
"**/*/node_modules/**/*",
"website/build/**/*"
]
}