mirror of
https://github.com/valitydev/checkout.git
synced 2024-11-06 10:35:20 +00:00
21 lines
521 B
JSON
21 lines
521 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/",
|
|
"sourceMap": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "node",
|
|
"module": "es2015",
|
|
"target": "es5",
|
|
"jsx": "react",
|
|
"lib": ["es2015", "dom"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"checkout/*": ["./src/app/*", "./src/locale/*"]
|
|
},
|
|
"pretty": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true
|
|
},
|
|
"include": ["./src/**/*", "./types/**/*"]
|
|
}
|