1
0
mirror of https://github.com/teoxoy/factorio-blueprint-editor.git synced 2024-12-26 20:54:22 +02:00
factorio-blueprint-editor/tsconfig.json
2024-11-17 20:07:42 +01:00

32 lines
787 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"pretty": true,
"sourceMap": true,
// "strict": true,
"alwaysStrict": true,
"noImplicitAny": true,
// "noImplicitReturns": true,
"noUnusedLocals": true,
// "strictNullChecks": true,
"noUnusedParameters": true,
"useDefineForClassFields": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"noEmit": true,
"moduleResolution": "nodenext",
"isolatedModules": true,
"esModuleInterop": true,
"rootDir": ".",
"baseUrl": ".",
"paths": {
"@fbe/*": ["packages/*/src/index.ts"]
},
"typeRoots": ["./node_modules/@types"]
}
}