mirror of
https://github.com/lichess-org/chessground.git
synced 2026-05-26 13:50:53 +00:00
19 lines
395 B
JSON
19 lines
395 B
JSON
{
|
|
"include": ["src/*.ts"],
|
|
"exclude": [],
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"noEmitOnError": false,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"target": "ES2020",
|
|
"lib": ["DOM", "ES2020"]
|
|
}
|
|
}
|