mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-21 11:31:23 +01:00
24 lines
546 B
JSON
24 lines
546 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"lib": ["ESNext", "DOM"],
|
|
"moduleResolution": "Node",
|
|
"strict": true,
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"esModuleInterop": true,
|
|
"noEmit": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"skipLibCheck": true
|
|
// "baseUrl": ".",
|
|
// "paths": {
|
|
// "@/*": ["./src/*"]
|
|
// }
|
|
},
|
|
"include": ["src"]
|
|
}
|