cisagov--redeye
30 行
668 B
JSON
30 行
668 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"module": "ESNext",
|
|
"lib": ["ESNext", "DOM"],
|
|
"moduleResolution": "Node",
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"strict": true,
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"noEmit": false,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"emitDeclarationOnly": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"composite": true,
|
|
"jsxImportSource": "@emotion/react",
|
|
"jsx": "react-jsx"
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"files": [],
|
|
"include": ["src"]
|
|
}
|