mirror of
https://github.com/valitydev/checkout.git
synced 2024-11-06 02:25:18 +00:00
21 lines
520 B
JSON
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/**/*"]
|
|
}
|