boardgame-core/tsconfig.json

24 lines
503 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"lib": ["ES2020"],
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationMap": true,
"outDir": "./dist",
"rootDir": ".",
2026-04-02 15:59:27 +08:00
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
},
},
"include": ["src/**/*", "tests/**/*"],
"exclude": ["node_modules", "dist"],
}