2023-05-04 08:11:04 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es2018",
|
|
|
|
"module": "commonjs",
|
|
|
|
"strict": true,
|
2023-05-09 15:35:42 -07:00
|
|
|
"declaration": true,
|
2023-05-04 08:11:04 -07:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": true,
|
2023-05-09 22:21:01 -07:00
|
|
|
// TODO: moduleResolution: "nodenext" is buggy with this if the absolute
|
|
|
|
// path contains any capital letters
|
|
|
|
"forceConsistentCasingInFileNames": false,
|
2023-05-04 08:11:04 -07:00
|
|
|
"baseUrl": ".",
|
2023-05-09 22:21:01 -07:00
|
|
|
"moduleResolution": "nodenext",
|
2023-05-04 08:11:04 -07:00
|
|
|
"paths": {
|
2023-05-09 15:35:42 -07:00
|
|
|
"yoga-layout": ["src"]
|
2023-05-04 08:11:04 -07:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"ts-node": {
|
|
|
|
"transpileOnly": true
|
|
|
|
}
|
|
|
|
}
|