16 lines
409 B
JSON
16 lines
409 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": ["ESNext"],
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"noEmit": true,
|
|
"baseUrl": ".",
|
|
"paths": { "@shared/*": ["../shared/*"], "js-yaml": ["./node_modules/@types/js-yaml"] }
|
|
},
|
|
"include": ["src", "../shared"]
|
|
}
|