mirror of
https://github.com/teoxoy/factorio-blueprint-editor.git
synced 2025-09-04 17:09:30 +00:00
25 lines
543 B
JSON
25 lines
543 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ES6",
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
|
|
// "strict": true, // TODO: enable
|
|
|
|
"rootDir": ".",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@fbe/*": ["packages/*/src/index.ts"]
|
|
},
|
|
|
|
"typeRoots": ["./node_modules/@types"]
|
|
}
|
|
}
|