checkout/tsconfig.json
2023-04-17 17:44:11 +07:00

22 lines
553 B
JSON

{
"compilerOptions": {
"outDir": "./dist/",
"sourceMap": true,
"moduleResolution": "Node",
"module": "ES2015",
"target": "ES5",
"jsx": "react",
"lib": ["ESNext", "DOM"],
"baseUrl": ".",
"paths": {
"checkout/*": ["./src/app/*", "./src/locale/*"]
},
"pretty": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"skipLibCheck": true,
"esModuleInterop": true
},
"include": ["./src/**/*", "./types/**/*"]
}