autobaan/tsconfig.json
Collin Duncan a18e100d34
Adding some pretty stuff
Reorganized code and added some unit tests for reservations and requests
2021-11-24 00:00:22 +01:00

20 lines
No EOL
383 B
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"lib": ["es2021"],
"module": "commonjs",
"target": "es2021",
"strict": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "dist/"
},
"include": [
"src/**/*.ts"
]
}