2017-10-18 15:52:27 +00:00
|
|
|
{
|
2018-08-01 10:25:13 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "./dist/",
|
|
|
|
"sourceMap": true,
|
2020-10-05 11:56:13 +00:00
|
|
|
"moduleResolution": "Node",
|
|
|
|
"module": "ES2015",
|
|
|
|
"target": "ES5",
|
2018-08-01 10:25:13 +00:00
|
|
|
"jsx": "react",
|
2020-10-05 11:56:13 +00:00
|
|
|
"lib": ["ESNext", "DOM"],
|
2018-08-01 10:25:13 +00:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"checkout/*": ["./src/app/*", "./src/locale/*"]
|
|
|
|
},
|
2020-01-17 15:19:22 +00:00
|
|
|
"pretty": true,
|
|
|
|
"noUnusedLocals": true,
|
2021-10-01 11:18:36 +00:00
|
|
|
"noUnusedParameters": true,
|
2023-04-17 10:44:11 +00:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true
|
2018-02-08 12:48:05 +00:00
|
|
|
},
|
2018-12-20 08:56:59 +00:00
|
|
|
"include": ["./src/**/*", "./types/**/*"]
|
2018-01-17 09:32:47 +00:00
|
|
|
}
|