hammerstone/tsconfig.json
2024-05-08 11:09:37 -04:00

19 lines
453 B
JSON

{
"compilerOptions": {
"target": "es2021",
"lib": ["es2021"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"rootDir": "./src",
"baseUrl": "./src",
"paths": {},
"outDir": "./bin",
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"declaration": true,
"noUncheckedIndexedAccess": true
},
}