mirror of
https://github.com/jlengrand/adyen-web.git
synced 2026-03-10 08:01:22 +00:00
33 lines
748 B
JSON
33 lines
748 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"checkJs": false,
|
|
|
|
"outDir": "./dist/",
|
|
"declaration": true,
|
|
|
|
"moduleResolution": "node",
|
|
"module": "esnext",
|
|
"target": "es5",
|
|
"jsx": "react",
|
|
"jsxFactory": "h",
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
|
|
"noImplicitAny": false,
|
|
"strictPropertyInitialization": false,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"stripInternal": true,
|
|
|
|
"importHelpers": true,
|
|
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"~/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": ["src/"],
|
|
"exclude": ["node_modules", "**/*.test.*"]
|
|
}
|