Files
noahspan-modules/tsconfig.json
Noah Spannbauer 32c2da22f5 First commit
2024-05-26 19:08:32 -05:00

29 lines
695 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2021",
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
"paths": {
"@module/modules": [
"libs/modules/src"
],
"@modulemodules/*": [
"libs/modules/src/*"
]
}
}
}