checkout/tsconfig.json
2022-01-24 14:38:04 +03:00

21 lines
520 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
},
"include": ["./src/**/*", "./types/**/*"]
}