1
0
mirror of https://github.com/barthuijgen/factorio-sites.git synced 2024-12-12 11:45:22 +02:00
factorio-sites/apps/blueprints/tsconfig.json
2021-12-03 10:56:23 +01:00

32 lines
639 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"jsx": "preserve",
"allowJs": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"types": [
"node",
"jest"
],
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"resolveJsonModule": true,
"isolatedModules": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"jsxImportSource": "@emotion/react",
"incremental": true
},
"include": [
"**/*.ts",
"**/*.tsx",
"next-env.d.ts",
"**/*.js",
"**/*.jsx"
],
"exclude": [
"node_modules"
]
}