mirror of
https://github.com/jeffvli/feishin.git
synced 2024-11-20 14:37:06 +01:00
30 lines
759 B
JSON
30 lines
759 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2021",
|
|
"module": "commonjs",
|
|
"lib": ["dom", "es2021"],
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"/@/*": ["*"]
|
|
},
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "@emotion/react",
|
|
"strict": true,
|
|
"pretty": true,
|
|
"sourceMap": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"allowJs": true,
|
|
"outDir": "release/app/dist"
|
|
},
|
|
"exclude": ["test", "release/build", "release/app/dist", ".erb/dll", "server"]
|
|
}
|