autobaan/tsconfig.json

20 lines
383 B
JSON
Raw Normal View History

{
"$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"
]
}