mirror of
https://github.com/CivMC/Civ.git
synced 2026-07-15 23:20:44 +00:00
27 lines
640 B
JSON
27 lines
640 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"useDefineForClassFields": true,
|
|
"moduleResolution": "node",
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["esnext", "dom"],
|
|
"types": ["node"],
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"~/*": ["./docs/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"docs/**/*.ts",
|
|
"docs/**/*.d.ts",
|
|
"docs/**/*.tsx",
|
|
"docs/**/*.vue",
|
|
],
|
|
"exclude": ["docs/dist/**", "docs/cache/**"]
|
|
}
|