checkout/tsconfig.json

22 lines
553 B
JSON
Raw Normal View History

2017-10-18 15:52:27 +00:00
{
"compilerOptions": {
"outDir": "./dist/",
"sourceMap": true,
"moduleResolution": "Node",
"module": "ES2015",
"target": "ES5",
"jsx": "react",
"lib": ["ESNext", "DOM"],
"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/**/*"]
}