2022-04-22 22:31:54 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"outDir": "dist",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"target": "ES2020",
|
2022-05-28 20:54:25 -04:00
|
|
|
"jsx": "react",
|
2022-05-28 21:49:38 -04:00
|
|
|
"jsxFactory": "window.SP_REACT.createElement",
|
2022-04-22 22:31:54 +02:00
|
|
|
"declaration": true,
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noImplicitThis": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"strict": true,
|
2024-05-12 15:45:26 -04:00
|
|
|
"removeComments": true,
|
2022-04-22 22:31:54 +02:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"skipLibCheck": true
|
|
|
|
|
},
|
2022-05-28 20:54:25 -04:00
|
|
|
"include": ["src", "globals.d.ts"],
|
2022-04-22 22:31:54 +02:00
|
|
|
"exclude": ["node_modules"]
|
|
|
|
|
}
|