boardgame-core/tsconfig.json

23 lines
483 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"lib": ["ES2020"],
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationMap": true,
"outDir": "./dist",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
},
},
"include": ["src/**/*", "tests/**/*"],
"exclude": ["node_modules", "dist"],
}