Files
tango/tsconfig.prod.json
2023-08-25 09:39:35 +08:00

22 lines
540 B
JSON

{
"compilerOptions": {
"target": "ES2015",
"module": "ES2015",
"lib": ["dom", "esnext"],
"importHelpers": true,
"declaration": true,
"sourceMap": false,
"moduleResolution": "node",
"skipLibCheck": true,
"strict": true,
"noFallthroughCasesInSwitch": true,
"suppressImplicitAnyIndexErrors": true,
"ignoreDeprecations": "5.0",
"allowSyntheticDefaultImports": true,
"strictNullChecks": false,
"jsx": "react",
"esModuleInterop": true
},
"exclude": ["node_modules", "dist"]
}