mirror of
https://github.com/barthuijgen/factorio-sites.git
synced 2024-12-12 11:45:22 +02:00
32 lines
639 B
JSON
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"
|
|
]
|
|
}
|