autobaan/tsconfig.json
2023-05-23 15:09:09 -05:00

19 lines
No EOL
341 B
JSON

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